
body {
    margin: 0;
    font-family: Montserrat, sans-serif;
}

/* NAVBAR */
.navbar {
    position: relative;
    height: 80px;
    background: #f6e4d5;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    font-family: Cormorant Garamond;
}

/* CENTER NAV */
.center-nav {
    display: flex;
    align-items: center;
    gap: 60px;
}

/* LINKS */
.nav-left, .nav-right {
    display: flex;
    gap: 125px;
}

.nav-left a, .nav-right a {
    color: rgb(74, 64, 64);
    text-decoration: none;
}

/* LOGO */
.logo {
    position: relative;
    z-index: 20;
}

.logo img {
    height: 150px;
    transform: translateY(40px); /* stronger overlap */
}
/* HERO */
.hero {
    height: 700px;
    background: url('mainpagephotos/Dayans-113\ 2\ \(1\)\ \(1\).jpg') center/cover no-repeat;
    margin-top: -40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* HAMBURGER */
.menu-toggle {
    display: none;
    color: white;
    font-size: 28px;
    position: absolute;
    right: 20px;
    cursor: pointer;
    font-family: Cormorant Garamond;
}

/* MOBILE MENU */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: #f6e4d5;
    position: absolute;
    top: 70px;
    width: 100%;
    text-align: center;
    font-family: Cormorant Garamond;
  
}

.mobile-menu a {
    padding: 30px;
    color: rgb(22, 20, 20);
    text-decoration: none;
    
}
/* NAV LINK HOVER EFFECT */
.nav-left a,
.nav-right a {
    position: relative;
    transition: 0.3s ease;
    font-size: 25px;
    margin-top: 20px;
}

/* Colour change on hover */
.nav-left a:hover,
.nav-right a:hover {
    color: #020106;
}

/* Animated underline */
.nav-left a::after,
.nav-right a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: #000000;
    transition: width 0.3s ease;
}

/* Expand underline on hover */
.nav-left a:hover::after,
.nav-right a:hover::after {
    width: 100%;
}

/* 📱 RESPONSIVE */
@media (max-width: 768px) {

    /* Hide desktop links */
    .nav-left,
    .nav-right {
        display: none;
    }

    /* Show hamburger */
    .menu-toggle {
        display: block;
    }

    /* Center logo */
    .center-nav {
        justify-content: center;
        width: 100%;
    }

 .logo {
    position: relative;
    z-index: 20;
}

.logo img {
    height: 120px; /* bigger */
    transform: translateY(45px); /* pushes logo DOWN into hero */
}

    /* Reduce overlap for mobile */
.hero {
    height: 500px;
    background: url('mainpagephotos/Dayans-113\ 2\ \(1\)\ \(1\).jpg') center/cover no-repeat;
    margin-top: -20px; /* small pull */
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgb(244, 243, 243);
}

/* MOBILE MENU HOVER */
.mobile-menu a {
    transition: 0.3s ease;
}

.mobile-menu a:hover {
    color: #230ac9;
    background: #111;
}
}

/* HERO CONTENT */
.hero {
    position: relative;
}

/* Hero text container */
.hero-content {
    text-align: center;
    color: rgb(255, 243, 222);
    max-width: 700px;
    padding: 10px;
    margin-top: 200px;
    font-family: Cormorant Garamond;
    
   
}

/* Title */

.hero-content h1 {
    font-size: 55px;
    margin: 0 0 15px;
    font-weight: 700;
        background: #eee;
    padding: 15px 23px;
    border-radius: 30px;
     background: rgba(221, 221, 221, 0.7);
    color: rgb(133, 116, 102);
    padding: 5px 12px;
    border-radius: 20px;
    display: inline-block;

}

/* Small text */
.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    line-height: 1.6;
}

/* Button */
.hero-btn {
    display: inline-block;
    padding: 14px 35px;
    border: 2px solid white;
    border-radius: 10px;
    color: white;
    text-decoration: none;
    font-size: 20px;
    transition: 0.3s ease;
    margin-right: 50px;
}

/* Button hover */
.hero-btn:hover {
    background: white;
    color: black;
}

@media (max-width: 768px) {

    .hero-content h1 {
        font-size: 36px;
    }

    .hero-content p {
        font-size: 15px;
        padding: 0 15px;
    }

    .hero-btn {
        padding: 12px 28px;
        font-size: 14px;
        margin-left: 60PX;
       
        margin-bottom: 200PX;
    }
}

/* ABOUT SECTION */
.about {
    padding: 100px 8%;
    background: white;
}

.about-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}


/* IMAGE AREA */
.about-images {
    position: relative;
    width: 500px;
    height: 450px;
}


/* Main image */
.main-img {
    width: 380px;
    height: 420px;
    object-fit: cover;
    border-radius: 10px;
}


/* Overlapping image */
.small-img {
    position: absolute;
    width: 220px;
    height: 250px;
    object-fit: cover;
    right: 0;
    bottom: 20px;
    border: 10px solid white;
    border-radius: 10px;
}


/* TEXT */
.about-content {
    max-width: 500px;
}

.about-content h2 {
    font-size: 45px;
    margin-bottom: 20px;
    font-family: Cormorant Garamond;
}

.about-content p {
    font-size: 18px;
    line-height: 1.7;
}


/* BUTTON */
.about-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 30px;
    border-radius: 30px;
    border: 2px solid black;
    color: black;
    text-decoration: none;
    transition: 0.3s;
}

.about-btn:hover {
    background: black;
    color: white;
}
@media (max-width: 768px) {

    .about-container {
        flex-direction: column;
        text-align: center;
    }

    .about-images {
        width: 320px;
        height: 350px;
    }

    .main-img {
        width: 280px;
        height: 320px;
    }

    .small-img {
        width: 150px;
        height: 170px;
        bottom: 10px;
    }

    .about-content h2 {
        font-size: 35px;
    }
}

:root {
    --services-bg:#f6e4d5;
    --services-text: #4a4a4a;
    --services-accent: #5a4c41;
    --services-white: #ffffff;
    --services-overlay: rgba(0,0,0,0.2);
    --services-overlay-hover: rgba(0,0,0,0.35);
}


/* SERVICES SECTION */
/* ================= SERVICES SECTION ================= */

.services-section {
    background-color: var(--services-bg);
    max-width: 1200px;
    width: 100%;
    margin: auto;
    padding: 100px 8%;
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    align-items: start;
}


/* ================= HEADER ================= */

.services-header {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}


.services-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-style: italic;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 2px;
    white-space: nowrap;
    margin-right: 20px;
}


.services-line {
    height: 1px;
    background-color: var(--services-text);
    flex-grow: 1;
    opacity: 0.3;
}



/* ================= WEDDING IMAGE ================= */

.services-left {
    grid-column: 1;
    grid-row: 1 / span 3;
}


.services-image-link {
    display: block;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}


.services-image-link:hover {
    transform: translateY(-5px);
}


.services-main-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
}



/* ================= SERVICES RIGHT ================= */

.services-right {
    grid-column: 2;
    grid-row: 2;
    display: flex;
    flex-direction: column;
}



/* ================= STAGGERED IMAGES ================= */

.services-staggered-images {
    position: relative;
    height: 520px;
    display: block;
}


.services-small-container {
    width: 65%;
    position: absolute;
}


.services-small-container:nth-child(1) {
    top: 0;
    left: 0;
}


.services-small-container:nth-child(2) {
    top: 120px;
    right: 0;
    z-index: 2;
}


.services-small-container:nth-child(3) {
    top: 240px;
    left: 0;
}


.services-small-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}



/* ================= OVERLAY ================= */

.services-image-overlay {
    position: absolute;
    inset: 0;
    background: var(--services-overlay);
    display: flex;
    justify-content: center;
    align-items: center;
    transition: background 0.3s ease;
}


.services-image-link:hover .services-image-overlay {
    background: var(--services-overlay-hover);
}


.services-overlay-text {
    color: var(--services-white);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 600;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}


.services-left .services-overlay-text {
    font-size: 1.8rem;
}



/* ================= BUTTON ================= */

.services-button-container {
    display: flex;
    justify-content: flex-end;
    margin-top: 15px;
}


.services-btn {
    background-color: var(--services-accent);
    color: var(--services-white);
    text-decoration: none;

    padding: 12px 20px;
    font-size: 0.85rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;

    display: inline-flex;
    align-items: center;
    gap: 10px;

    transition: all 0.3s ease;
}


.services-btn:hover {
    background-color: #8a7868;
}


.services-btn span {
    font-size: 1rem;
}



/* ================= MOBILE ================= */

@media (max-width:768px){

    .services-section {
        display:flex;
        flex-direction:column;
        padding:60px 5%;
        gap:30px;
    }


    /* Title first */
    .services-header {
        order:1;
        width:100%;
    }


    /* Wedding image second */
    .services-left {
        order:2;
        width:100%;
    }


    /* Other services */
    .services-right {
        order:3;
        width:100%;
    }


    .services-staggered-images {
        height:auto;
        display:flex;
        flex-direction:column;
        gap:20px;
    }


    /* Remove desktop stagger */
    .services-small-container,
    .services-small-container:nth-child(1),
    .services-small-container:nth-child(2),
    .services-small-container:nth-child(3) {

        position:relative;
        width:100%;
        top:auto;
        left:auto;
        right:auto;
    }


    .services-main-image,
    .services-small-image {
        width:90%;
        height:250px;
        margin:auto;
        object-fit:cover;
    }


    .services-title {
        font-size:2rem;
        text-align:center;
    }


    .services-button-container {
        justify-content:center;
        margin-top:20px;
    }

}

@media (max-width: 768px) {

    /* Hide scrollbar on mobile */
    body {
        scrollbar-width: none; /* Firefox */
        -ms-overflow-style: none; /* Internet Explorer/Edge */
    }

    body::-webkit-scrollbar {
        display: none; /* Chrome, Safari */
    }

}

        :root {
            --footer-bg: #f6e4d5;
            --footer-text: #4a4040;
            --footer-accent: #5a4c41;
            --footer-hover: #230ac9;
            --footer-white: #ffffff;
            --heading-font: 'Cormorant Garamond', serif;
            --body-font: 'Montserrat', sans-serif;
        }

        body {
            margin: 0;
            font-family: var(--body-font);
        }

        /* FOOTER STYLES */
        .site-footer {
            background-color: var(--footer-bg);
            color: var(--footer-text);
            padding: 80px 8% 40px;
            border-top: 1px solid rgba(74, 64, 64, 0.1);
        }

        .footer-container {
            max-width: 1200px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 1fr 1fr 1.5fr;
            gap: 60px;
            align-items: start;
        }

        /* LOGO & SOCIALS SECTION */
        .footer-brand {
            display: flex;
            flex-direction: column;
            gap: 25px;
        }

        .footer-logo img {
            height: 100px; /* Adjusted based on your navbar logo style */
            width: auto;
            object-fit: contain;
        }

        .footer-tagline {
            font-family: var(--heading-font);
            font-size: 1.2rem;
            font-style: italic;
            line-height: 1.5;
        }

        .social-links {
            display: flex;
            gap: 20px;
            margin-top: 10px;
        }

        .social-links a {
            color: var(--footer-text);
            font-size: 24px;
            transition: color 0.3s ease, transform 0.3s ease;
            text-decoration: none;
        }

        .social-links a:hover {
            color: var(--footer-hover);
            transform: translateY(-3px);
        }

        /* CENTER LINKS SECTION (Optional but balances the design) */
        .footer-nav h3, .footer-contact h3 {
            font-family: var(--heading-font);
            font-size: 1.8rem;
            margin-bottom: 25px;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--footer-accent);
        }

        .footer-nav ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-nav ul li {
            margin-bottom: 12px;
        }

        .footer-nav ul li a {
            color: var(--footer-text);
            text-decoration: none;
            font-size: 1rem;
            transition: color 0.3s ease;
        }

        .footer-nav ul li a:hover {
            color: var(--footer-hover);
            padding-left: 5px;
        }

        /* CONTACT FORM SECTION */
        .footer-contact-form {
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 5px;
        }

        .footer-contact-form input, 
        .footer-contact-form textarea {
            width: 100%;
            padding: 12px 15px;
            border: 1px solid rgba(74, 64, 64, 0.2);
            background: rgba(255, 255, 255, 0.5);
            border-radius: 5px;
            font-family: var(--body-font);
            font-size: 0.9rem;
            color: var(--footer-text);
            transition: border-color 0.3s ease, background 0.3s ease;
        }

        .footer-contact-form input:focus, 
        .footer-contact-form textarea:focus {
            outline: none;
            border-color: var(--footer-accent);
            background: var(--footer-white);
        }

        .footer-contact-form textarea {
            height: 100px;
            resize: vertical;
        }

        .submit-btn {
            background-color: var(--footer-accent);
            color: var(--footer-white);
            border: none;
            padding: 14px 30px;
            font-family: var(--body-font);
            font-weight: 500;
            text-transform: uppercase;
            letter-spacing: 2px;
            cursor: pointer;
            transition: background 0.3s ease, transform 0.2s ease;
            border-radius: 5px;
            align-self: flex-start;
        }

        .submit-btn:hover {
            background-color: #453a32;
            transform: scale(1.02);
        }

        /* BOTTOM BAR */
        .footer-bottom {
            margin-top: 60px;
            padding-top: 30px;
            border-top: 1px solid rgba(74, 64, 64, 0.1);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 0.85rem;
            opacity: 0.8;
        }

        /* 📱 RESPONSIVE DESIGN */
        @media (max-width: 992px) {
            .footer-container {
                grid-template-columns: 1fr 1fr;
            }
            .footer-contact {
                grid-column: span 2;
            }
        }

        @media (max-width: 768px) {
            .site-footer {
                padding: 60px 5% 30px;
            }
            .footer-container {
                grid-template-columns: 1fr;
                gap: 40px;
                text-align: center;
            }
            .footer-brand, .footer-contact {
                grid-column: span 1;
                align-items: center;
            }
            .social-links {
                justify-content: center;
            }
            .submit-btn {
                align-self: center;
                width: 100%;
            }
            .footer-bottom {
                flex-direction: column;
                gap: 15px;
            }
        }

                :root {
            --owner-bg: #ffffff;
            --owner-text: #4a4040;
            --owner-accent: #5a4c41;
            --owner-highlight: #f6e4d5;
            --heading-font: 'Cormorant Garamond', serif;
            --body-font: 'Montserrat', sans-serif;
        }

        body {
            margin: 0;
            font-family: var(--body-font);
        }

        /* OWNER SECTION STYLES */
        .owner-section {
            padding: 120px 8%;
            background-color: var(--owner-bg);
            overflow: hidden;
        }

        .owner-container {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 80px;
        }

        /* IMAGE SIDE */
        .owner-image-wrapper {
            flex: 1;
            position: relative;
            display: flex;
            justify-content: center;
        }

        .owner-main-img {
            width: 400px;
            height: 550px;
            object-fit: cover;
            border-radius: 15px;
            box-shadow: 20px 20px 0px var(--owner-highlight);
            z-index: 1;
        }

        .owner-accent-box {
            position: absolute;
            top: -30px;
            left: -30px;
            width: 150px;
            height: 150px;
            background-color: var(--owner-highlight);
            opacity: 0.5;
            z-index: 0;
            border-radius: 50%;
        }

        /* TEXT SIDE */
        .owner-content {
            flex: 1.2;
        }

        .owner-subtitle {
            font-family: var(--body-font);
            text-transform: uppercase;
            letter-spacing: 4px;
            font-size: 0.9rem;
            color: var(--owner-accent);
            margin-bottom: 15px;
            display: block;
        }

        .owner-title {
            font-family: var(--heading-font);
            font-size: 3.5rem;
            color: var(--owner-text);
            margin: 0 0 25px 0;
            line-height: 1.1;
        }

        .owner-description {
            font-size: 1.1rem;
            line-height: 1.8;
            color: var(--owner-text);
            margin-bottom: 30px;
        }

        .owner-signature {
            font-family: var(--heading-font);
            font-size: 2.2rem;
            font-style: italic;
            color: var(--owner-accent);
            margin-top: 40px;
        }

        .owner-role {
            display: block;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 2px;
            margin-top: 5px;
            opacity: 0.7;
        }

        /* 📱 RESPONSIVE */
        @media (max-width: 992px) {
            .owner-container {
                flex-direction: column;
                text-align: center;
                gap: 60px;
            }
            .owner-main-img {
                width: 100%;
                max-width: 350px;
                height: 450px;
            }
            .owner-title {
                font-size: 2.8rem;
            }
        }

        @media (max-width: 768px) {
            .owner-section {
                padding: 80px 5%;
            }
            .owner-title {
                font-size: 2.4rem;
            }
            .owner-description {
                font-size: 1rem;
            }
        }






