/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    line-height: 1.2;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #333;
    text-decoration: none;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: #d4af37;
}

.cart {
    font-size: 0.9rem;
    color: #666;
    margin-left: 1rem;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
/* --- HERO --- */
.hero{
  /* image + side gradient for legibility */
  position: relative;
  height: 100vh;
  width: 100vw;
  display: flex;
  align-items: center;
  background-image:
    linear-gradient(90deg, rgba(0,0,0,.60) 0%, rgba(0,0,0,.35) 35%, rgba(0,0,0,0) 70%),
    url('../images/Melissa & Ben/P1150575.JPG');
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  /* push focal point (faces) to the right so text sits left */
  background-position: 70% 25%;
}

.hero-content{
  position: relative;       /* sit above gradient */
  z-index: 1;
  color: #fff;
  text-align: left;
  width: min(680px, 92%);
  margin-left: clamp(16px, 8vw, 10%);
  padding: clamp(8px, 1vw, 12px) 0;
  text-shadow: 0 1px 2px rgba(0,0,0,.35);
}

.hero-title{
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(28px, 5vw, 52px);
  line-height: 1.1;
  margin: 0 0 .4rem;
}

.hero-subtitle h2{
  margin: 0;
  font-weight: 400;
  font-size: clamp(15px, 2.2vw, 22px);
  opacity: .95;
}

.hero-pricing-btn {
  display: inline-block;
  background: #d4af37;
  color: white;
  padding: 12px 24px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  font-size: clamp(16px, 2.5vw, 20px);
  letter-spacing: 1px;
  transition: all 0.3s ease;
  border: 2px solid #d4af37;
  margin: 1rem 0;
}

.hero-pricing-btn:hover {
  background: transparent;
  color: #d4af37;
  border-color: #d4af37;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.3);
}

.hero-description{ margin: 1rem 0 .25rem; opacity: .9; }

.hero-poetry{
  margin-top: .5rem;
  padding-left: 14px;
  border-left: 2px solid rgba(255,255,255,.35);
  font-style: italic;
  opacity: .85;
}

.scroll-indicator{
  position: absolute;
  left: 50%;
  bottom: 18px;
  transform: translateX(-50%);
  letter-spacing: .15em;
  font-size: 12px;
  text-transform: uppercase;
  opacity: .75;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Portfolio Section */
.portfolio-section {
    padding: 6rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 4rem;
    color: #333;
    letter-spacing: 2px;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    aspect-ratio: 4/3;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.portfolio-item:hover {
    transform: translateY(-5px);
}

.portfolio-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-image {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.portfolio-item:hover .portfolio-overlay {
    transform: translateY(0);
}

.portfolio-overlay h3 {
    font-size: 1.5rem;
    text-transform: lowercase;
    letter-spacing: 1px;
}

/* About Section */
.about-section {
    background: #f8f6f0;
    padding: 6rem 2rem;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.about-title {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
    letter-spacing: 2px;
}

.about-subtitle {
    font-size: 1.2rem;
    color: #666;
    font-style: italic;
    margin-bottom: 3rem;
}

.about-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.publications {
    margin: 4rem 0;
}

.publications h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.publication-logos {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.publication-logo {
    background: #fff;
    padding: 1rem 2rem;
    border-radius: 5px;
    color: #666;
    font-size: 0.9rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.about-quote {
    margin-top: 4rem;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
}

.cta-button {
    display: inline-block;
    margin-top: 2rem;
    padding: 1rem 2rem;
    background: #d4af37;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    font-weight: 500;
    letter-spacing: 1px;
    border: 2px solid #d4af37;
}

.cta-button:hover {
    background: transparent;
    color: #d4af37;
    border-color: #d4af37;
}

/* Testimonials Section */
.testimonials-section {
    padding: 6rem 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.testimonials-container {
    margin: 4rem 0;
}

.testimonial {
    margin-bottom: 4rem;
    padding: 2rem;
    background: #f8f6f0;
    border-radius: 8px;
}

.testimonial blockquote {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 1.5rem;
}

.testimonial cite {
    color: #333;
    font-weight: 600;
    font-style: normal;
}

.more-reviews {
    display: block;
    text-align: center;
    color: #666;
    text-decoration: none;
    font-weight: 500;
    margin-top: 2rem;
}

.more-reviews:hover {
    color: #d4af37;
}

/* Portfolio Categories */
.portfolio-categories {
    display: flex;
    justify-content: center;
    gap: 4rem;
    padding: 4rem 2rem;
    background: #f8f6f0;
}

.category-item {
    text-align: center;
}

.category-item h3 {
    font-size: 1.5rem;
    color: #333;
    text-transform: lowercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.category-item h3:hover {
    color: #d4af37;
}

/* Footer */
.footer {
    background: #333;
    color: white;
    padding: 4rem 2rem 2rem;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: lowercase;
    letter-spacing: 1px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #d4af37;
}

.footer-info {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
}

.contact-info h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.contact-info p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.footer-section h4 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-links h4 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.social-links h4 {
    color: #d4af37;
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-section p {
    color: #ccc;
    font-size: 0.9rem;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.social-links a {
    color: #ccc;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #d4af37;
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #999;
    font-size: 0.9rem;
}

/* Page-specific styles */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Active navigation link */
.nav-link.active {
    color: #d4af37;
    font-weight: 600;
}

/* Page Hero Sections */
.portfolio-hero,
.about-hero,
.journal-hero,
.guides-hero,
.contact-hero {
    height: 60vh;
    background: linear-gradient(135deg, #f8f6f0 0%, #e8e4d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.portfolio-hero h1,
.about-hero h1,
.journal-hero h1,
.guides-hero h1,
.contact-hero h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
}

.portfolio-hero p,
.about-hero p,
.journal-hero p,
.guides-hero p,
.contact-hero p {
    font-size: 1.2rem;
    color: #666;
}

/* Portfolio Filter */
.portfolio-filter {
    padding: 2rem 0;
    background: #f8f6f0;
}

.filter-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.filter-btn {
    background: none;
    border: 2px solid #333;
    padding: 0.8rem 2rem;
    margin: 0 0.5rem 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.filter-btn:hover,
.filter-btn.active {
    background: #333;
    color: white;
}

/* Portfolio Gallery */
.portfolio-gallery {
    padding: 4rem 0;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    display: block;
    text-decoration: none;
    color: inherit;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 1rem;
    opacity: 0.9;
}

/* Portfolio CTA */
/* Pricing Section */
.pricing-section {
    padding: 4rem 0;
    background: #f8f6f0;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.pricing-item {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    position: relative;
}

.pricing-item:hover {
    transform: translateY(-5px);
}

.pricing-item.featured {
    border: 3px solid #d4af37;
    transform: scale(1.05);
}

.pricing-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    color: #d4af37;
    margin-bottom: 1.5rem;
}

.pricing-item ul {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.pricing-item li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #eee;
}

.pricing-item li:last-child {
    border-bottom: none;
}

/* Simple Gallery */
.simple-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.simple-gallery img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.simple-gallery img:hover {
    transform: scale(1.02);
}

/* Journal Pages */
.journal-hero {
    background: linear-gradient(135deg, #f8f6f0 0%, #e8e4d8 100%);
    padding: 6rem 0 4rem;
    text-align: center;
}

.journal-hero h1 {
    font-size: 3rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 700;
}

.journal-date {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.journal-author {
    font-size: 1rem;
    color: #888;
    font-style: italic;
}

.journal-content {
    padding: 4rem 0;
}

.journal-article {
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.8;
}

.article-intro {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 3rem;
    padding: 2rem;
    background: #f8f6f0;
    border-left: 4px solid #d4af37;
    border-radius: 0 8px 8px 0;
}

.tip-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #eee;
}

.tip-section:last-of-type {
    border-bottom: none;
}

.tip-section h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
    font-weight: 600;
}

.tip-section p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 1rem;
}

.article-conclusion {
    margin-top: 4rem;
    padding: 2rem;
    background: #f8f6f0;
    border-radius: 8px;
}

.article-conclusion h2 {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 1rem;
}

.article-conclusion a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
}

.article-conclusion a:hover {
    text-decoration: underline;
}

.article-tags {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.tag {
    display: inline-block;
    background: #d4af37;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-right: 0.5rem;
    margin-bottom: 0.5rem;
}

.related-articles {
    background: #f8f6f0;
    padding: 4rem 0;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.article-preview {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.article-preview:hover {
    transform: translateY(-5px);
}

.article-preview img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.article-preview-content {
    padding: 1.5rem;
}

.article-preview-content h3 {
    font-size: 1.3rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.article-preview-content p {
    color: #666;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.read-more {
    color: #d4af37;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.read-more:hover {
    text-decoration: underline;
}

.portfolio-cta {
    background: #333;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

/* About Page Styles */
.team-section {
    padding: 6rem 0;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.team-intro {
    font-size: 1.2rem;
    font-style: italic;
    color: #666;
    margin-bottom: 2rem;
}

.team-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.team-image {
    position: relative;
}

.team-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    object-position: center 30%;
    border-radius: 8px;
}

.team-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 2rem 1rem 1rem;
    border-radius: 0 0 8px 8px;
}

.team-caption h3 {
    margin: 0;
    font-size: 1.5rem;
    font-weight: 600;
    text-align: center;
}

.philosophy-section {
    background: #f8f6f0;
    padding: 6rem 0;
}

.philosophy-content h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #333;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.philosophy-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.philosophy-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
}

.philosophy-item p {
    color: #666;
    line-height: 1.6;
}

.services-section {
    padding: 6rem 0;
}

.services-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #333;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    padding: 2rem;
    background: #f8f6f0;
    border-radius: 8px;
    text-align: center;
}

.service-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.service-item p {
    color: #666;
    line-height: 1.6;
}

.awards-section {
    background: #333;
    color: white;
    padding: 6rem 0;
}

.awards-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

.awards-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.award-item {
    text-align: center;
    padding: 2rem;
}

.award-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #d4af37;
}

.award-item p {
    opacity: 0.9;
    line-height: 1.6;
}

.about-cta {
    background: #f8f6f0;
    padding: 4rem 2rem;
    text-align: center;
}

/* Journal Page Styles */
.featured-article {
    padding: 4rem 0;
    background: #f8f6f0;
}

.featured-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.featured-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 8px;
}

.featured-text h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #333;
}

.article-category {
    display: inline-block;
    background: #d4af37;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 1rem;
}

.read-more {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.read-more:hover {
    color: #333;
}

.journal-grid {
    padding: 4rem 0;
}

.journal-articles {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.journal-item {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.journal-item:hover {
    transform: translateY(-5px);
}

.article-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.article-content {
    padding: 2rem;
}

.article-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.article-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.date {
    color: #999;
    font-size: 0.9rem;
}

.newsletter-section {
    background: #333;
    color: white;
    padding: 4rem 0;
    text-align: center;
}

.newsletter-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.newsletter-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.newsletter-form {
    display: flex;
    max-width: 500px;
    margin: 0 auto;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
}

.newsletter-form button {
    background: #d4af37;
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    transition: background 0.3s ease;
}

.newsletter-form button:hover {
    background: #b8941f;
}

/* Wedding Guides Page Styles */
.featured-guides {
    padding: 4rem 0;
    background: #f8f6f0;
}

.featured-guides h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #333;
}

.guides-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.guide-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.guide-card:hover {
    transform: translateY(-5px);
}

.guide-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.guide-content {
    padding: 2rem;
}

.guide-content h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #333;
}

.guide-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.guide-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.guide-link:hover {
    color: #333;
}

.all-guides {
    padding: 6rem 0;
}

.all-guides h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #333;
}

.guides-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.category-section h3 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #333;
    border-bottom: 2px solid #d4af37;
    padding-bottom: 0.5rem;
}

.guides-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.guide-item {
    display: block;
    padding: 1.5rem;
    background: #f8f6f0;
    border-radius: 5px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.guide-item:hover {
    background: #d4af37;
    color: white;
    transform: translateX(10px);
}

.guide-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: inherit;
}

.guide-item p {
    font-size: 0.9rem;
    opacity: 0.8;
    color: inherit;
}

.guides-cta {
    background: #333;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

/* Contact Page Styles */
.contact-section {
    padding: 6rem 0;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
}

.contact-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 3rem;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.contact-item p {
    color: #666;
    margin-bottom: 0;
}

.contact-item .social-links {
    display: flex;
    gap: 1rem;
}

.contact-item .social-links a {
    color: #d4af37;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-item .social-links a:hover {
    color: #333;
}

.contact-form-container {
    background: #f8f6f0;
    padding: 3rem;
    border-radius: 8px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 1rem;
    border: 2px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #d4af37;
}

.submit-btn {
    background: #d4af37;
    color: white;
    border: 2px solid #d4af37;
    padding: 1rem 2rem;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: transparent;
    color: #d4af37;
    border-color: #d4af37;
}

.faq-section {
    background: #f8f6f0;
    padding: 6rem 0;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 4rem;
    color: #333;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 2rem;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.faq-item h3 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: #333;
}

.faq-item p {
    color: #666;
    line-height: 1.6;
}

.map-section {
    padding: 4rem 0;
}

.map-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #333;
}

.map-container {
    max-width: 800px;
    margin: 0 auto;
}

.map-placeholder {
    background: #f8f6f0;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 8px;
    color: #666;
}

.map-placeholder p {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

/* Wedding Portfolio Page Styles */
.wedding-hero {
    height: 70vh;
    background: linear-gradient(135deg, #f8f6f0 0%, #e8e4d8 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
    position: relative;
    overflow: hidden;
}

.wedding-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://images.unsplash.com/photo-1519741497674-611481863552?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.3;
    z-index: 1;
}

.emma-james-hero::before {
    background: url('https://images.unsplash.com/photo-1520854221256-17451cc331bf?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.4;
}

.lisa-david-hero::before {
    background: url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.5;
}

.anna-tom-hero::before {
    background: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.4;
}

.maria-john-hero::before {
    background: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.6;
}

.family-hero::before {
    background: url('https://images.unsplash.com/photo-1511895426328-dc8714191300?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.5;
}

.engagement-hero::before {
    background: url('https://images.unsplash.com/photo-1511285560929-80b456fea0bc?w=1920&h=1080&fit=crop') center/cover;
    opacity: 0.5;
}

.wedding-hero .hero-content {
    position: relative;
    z-index: 2;
    color: #333;
}

.wedding-hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.wedding-date {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 0.5rem;
    font-style: italic;
}

.wedding-location {
    font-size: 1.2rem;
    color: #888;
    font-weight: 300;
}

.wedding-story {
    padding: 6rem 0;
    background: #f8f6f0;
}

.story-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.story-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #333;
    font-family: 'Playfair Display', serif;
}

.story-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 1.5rem;
}

.portfolio-item.large {
    grid-column: span 2;
}

.wedding-details {
    padding: 6rem 0;
    background: #f8f6f0;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.detail-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.detail-item h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #d4af37;
    font-family: 'Playfair Display', serif;
}

.detail-item p {
    color: #666;
    line-height: 1.6;
}

.testimonial-section {
    padding: 6rem 0;
    background: white;
}

.testimonial-section .testimonial {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 3rem;
    background: #f8f6f0;
    border-radius: 8px;
}

.testimonial-section blockquote {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 2rem;
}

.testimonial-section cite {
    color: #d4af37;
    font-weight: 600;
    font-style: normal;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero{
        height: 100vh;
        width: 100vw;
        /* vertical gradient on mobile; faces still offset */
        background-image:
          linear-gradient(180deg, rgba(0,0,0,.55) 0%, rgba(0,0,0,.35) 45%, rgba(0,0,0,0) 85%),
          url('../images/Melissa & Ben/P1150575.JPG');
        background-position: 60% 20%;
        background-attachment: scroll;
    }
    .hero-content{
        margin: 0 6vw 10vh;
        width: 88%;
    }
    
    .portfolio-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .portfolio-categories {
        flex-direction: column;
        gap: 2rem;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    /* Page-specific responsive styles */
    .team-content,
    .featured-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .philosophy-grid,
    .services-grid,
    .awards-content,
    .journal-articles,
    .guides-grid,
    .guides-categories {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .filter-container {
        text-align: left;
    }
    
    .filter-btn {
        margin: 0.5rem 0.5rem 0.5rem 0;
    }
    
    /* Wedding Portfolio Responsive */
    .wedding-hero h1 {
        font-size: 2.5rem;
    }
    
    .wedding-date {
        font-size: 1.2rem;
    }
    
    .wedding-location {
        font-size: 1rem;
    }
    
    .portfolio-item.large {
        grid-column: span 1;
    }
    
    .details-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-content h2 {
        font-size: 2rem;
    }
}

/* Video Section Styles */
.video-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.video-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.video-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    margin-bottom: 3rem;
    font-style: italic;
}

.video-wrapper {
    position: relative;
    width: 100%;
    max-width: 900px;
    margin: 0 auto 3rem;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    background: #000;
}

.video-wrapper iframe {
    width: 100%;
    height: 500px;
    border: none;
    display: block;
    max-width: 560px;
    margin: 0 auto;
}

.video-description {
    max-width: 600px;
    margin: 0 auto;
}

.video-description p {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #495057;
    margin-bottom: 2rem;
}

.video-description .cta-button {
    display: inline-block;
    margin-top: 1rem;
}

/* Video Section Responsive */
@media (max-width: 768px) {
    .video-section {
        padding: 4rem 0;
    }
    
    .video-container {
        padding: 0 1rem;
    }
    
    .video-wrapper {
        margin-bottom: 2rem;
    }
    
    .video-wrapper iframe {
        height: 300px;
    }
    
    .video-subtitle {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .video-description p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .video-wrapper iframe {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 1rem;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle h2 {
        font-size: 1.2rem;
    }
    
    .portfolio-section,
    .about-section,
    .testimonials-section {
        padding: 4rem 1rem;
    }
    
    .footer {
        padding: 3rem 1rem 2rem;
    }
}
