﻿* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: sans-serif;
}

header {
    background:#5A0B1E; /* Dark Green */
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 5%;
    position: sticky;
    top: 0;
    z-index: 99;
}

.logo {
    font-size: 22px;
    font-weight: 700;
}

.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 25px;
}

.nav-links li a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 6px 10px;
    transition: 0.3s ease;
}

.nav-links li a:hover {
    background: #66bb6a; /* Light Green */
    border-radius: 4px;
}

/* ---- Dropdown ---- */
.dropdown-menu {
    display: none;
    position: absolute;
    background: white;
    margin-top: 10px;
    border-radius: 4px;
    list-style: none;
    min-width: 160px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.dropdown-menu li a {
    color: #1b5e20;
    padding: 10px;
    display: block;
}

.dropdown-menu li a:hover {
    background: #e8f5e9;
}

.dropdown:hover .dropdown-menu {
    display: block;
}

/* ---- Mobile Menu ---- */
.mobile-toggle {
    display: none;
    font-size: 26px;
    cursor: pointer;
}

@media (max-width: 880px) {
    nav ul {
        position: absolute;
        top: 65px;
        left: 0;
        width: 100%;
        background: #1b5e20;
        flex-direction: column;
        display: none;
        padding: 10px 0;
    }

    nav ul.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .dropdown-menu {
        position: static;
        margin-top: 0;
        background: #2e7d32;
        box-shadow: none;
    }

    .dropdown-menu li a {
        color: white;
    }

    .dropdown:hover .dropdown-menu {
        display: none; /* disable hover on mobile */
    }

    .dropdown-menu {
        display: none;
    }

    .dropdown > a:active + .dropdown-menu,
    .dropdown > a:focus + .dropdown-menu {
        display: block;
    }
}

/* ---- Footer ---- */
footer {
    background:#5A0B1E; /* Soft white-green */
    color: ghostwhite;
    padding-top: 40px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    padding: 0 5% 30px;
}

.footer-col {
    width: 31%;
    min-width: 240px;
    margin-bottom: 20px;
}

.footer-col h2,
.footer-col h3 {
    margin-bottom: 12px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin: 8px 0;
}

.footer-col ul li a {
    text-decoration: none;
    color: ghostwhite;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #388e3c;
}

.social a {
    font-size: 22px;
    margin-right: 12px;
    color: #1b5e20;
    text-decoration: none;
    transition: 0.3s;
}

.social a:hover {
    color: #388e3c;
}

.footer-bottom {
    text-align: center;
    padding: 15px;
    background: #1b5e20;
    color: white;
}
                 

    .green-slider {
        width: 100%;
        background:#F2EEE8;
       padding: 20px 0 109px 0;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .slider-wrapper {
        width: 99%;
        height: 350px;
        position: relative;
        overflow: hidden;
        border-radius: 10px;
    }

    .slide {
        width: 100%;
        height: 100%;
        position: absolute;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

    .slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    /* Different Styles */
    .fade-slide { animation: fadeSlide 12s infinite; }
    .zoom-slide { animation: zoomSlide 12s infinite; }
    .slide-left { animation: slideLeft 12s infinite; }

    @keyframes fadeSlide {
        0%, 33% { opacity:1; }
        34%, 100% { opacity:0; }
    }

    @keyframes zoomSlide {
        33%, 66% { opacity:1; transform: scale(1.1); }
        0%, 32%, 67%, 100% { opacity:0; transform: scale(1); }
    }

    @keyframes slideLeft {
        66%, 100% { opacity:1; transform: translateX(0); }
        0%, 65% { opacity:0; transform: translateX(100%); }
    }




:root {
    --maroon:#5A0B1E;
    --rose-gold:#B76E79;
    --bg-cream:#FFF7F2;
}

.marriage-section {
    display:flex;
    justify-content:space-between;
    align-items:center;
    padding:60px 6%;
    background:var(--bg-cream);
    border-left:8px solid var(--maroon);
    border-right:8px solid var(--maroon);
    gap:40px;
    background: gainsboro;
}

.marriage-content {
    width:48%;
}

.marriage-content h2 {
    color:var(--maroon);
    font-size:28px;
    margin-bottom:15px;
}

.marriage-content p {
    color:#444;
    line-height:1.6;
    margin-bottom:12px;
}

.marriage-content a {
    color:var(--rose-gold);
    text-decoration:underline;
}

.marriage-btn {
    display:inline-block;
    background:var(--maroon);
    color:#fff;
    padding:10px 20px;
    border-radius:5px;
    text-decoration:none;
}

.enhanced-slider-container {
    width:48%;
    height:370px;
    position:relative;
    overflow:hidden;
    border:3px solid var(--rose-gold);
    border-radius:10px;
}

.enhanced-slider {
    display:flex;
    width:100%;
    height:100%;
    transition:0.6s ease;
}

.enhanced-slide {
    min-width:100%;
    height:100%;
}

.enhanced-slide img {
    width:100%;
    height:100%;
    object-fit:cover;
}

/* Arrows */
.enhanced-prev, .enhanced-next {
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    background:rgba(90,11,30,0.75);
    color:white;
    border:none;
    padding:8px 12px;
    cursor:pointer;
    border-radius:3px;
    font-size:20px;
}

.enhanced-prev { left:10px; }
.enhanced-next { right:10px; }

.enhanced-prev:hover, .enhanced-next:hover {
    background:var(--rose-gold);
}

/* Dots */
.enhanced-dots {
    position:absolute;
    bottom:10px;
    width:100%;
    display:flex;
    justify-content:center;
    gap:6px;
}

.enhanced-dots div {
    width:10px;
    height:10px;
    border-radius:50%;
    background:#ccc;
    cursor:pointer;
}

.enhanced-dots .active-dot {
    background:var(--maroon);
}

@media(max-width:900px){
    .marriage-section { flex-direction:column; }
    .marriage-content, .enhanced-slider-container { width:100%; }
    .enhanced-slider-container { height:300px; }
}




:root {
    --maroon:#5A0B1E;
    --rose:#B76E79;
    --cream:#FFF7F2;
}

/* Section Centering */
.center-slider-section {
    width:100%;
    padding:50px 0;
    background:var(--cream);
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
}

/* Title */
.slide-title {
    font-size:26px;
    font-weight:700;
    color:var(--maroon);
    margin-bottom:20px;
    text-align:center;
}

/* Wrapper */
.slider-wrapper {
    display:flex;
    align-items:center;
    gap:10px;
    width:85%;
    justify-content:center;
}

/* Slide view */
.slider-view {
    width:100%;
    overflow:hidden; /* No scrollbars */
}

/* Track */
.slider-track {
    display:flex;
    gap:18px;
    transition:0.5s ease;
}

/* Card */
.slide-card {
    flex-shrink:0;
    width:calc(33.3333% - 12px);
    height:280px;
    border-radius:10px;
    position:relative;
    overflow:hidden; /* Prevents overflow */
    cursor:pointer;
}

.slide-card img {
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

/* Overlay */
.slide-overlay {
    position:absolute;
    bottom:0;
    left:0;
    width:100%;
    height:100%;
 background:#00000082;
    color:white;
    padding:18px;
    display:flex;
    align-items:flex-end;
    opacity:0;
    visibility:hidden;
    transition:0.3s ease;
    text-align:left;
}

.slide-overlay p {
    font-size:14px;
    line-height:1.3;
    margin:0;
    word-wrap:break-word;
}

/* Hover Reveal */
.slide-card:hover .slide-overlay {
    opacity:1;
    visibility:visible;
}

/* Buttons */
.slide-btn {
    background:var(--maroon);
    border:none;
    color:#fff;
    font-size:22px;
    padding:10px 14px;
    border-radius:6px;
    cursor:pointer;
    transition:0.3s;
}

.slide-btn:hover {
    background:var(--rose);
}

@media(max-width:900px){
    .slide-card { width:50%; }
}
@media(max-width:600px){
    .slide-card { width:100%; }
    .slide-btn { display:none; }
}

