/* THE SEASONS FONT */
@font-face {
    font-family: 'The Seasons';
    src: url('fonts/TheSeasons-Regular.woff2') format('woff2');
}

:root{
    --green: #313b30;
    --beige: #d8ccb8;
    --white: rgb(230, 218, 200);
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:'The Seasons', serif;
    font-weight: lighter;
    background:var(--green);
    padding-top: 80px;
}

/* NAVIGATION */
nav{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background-color: rgba(49, 59, 48, 0.9);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

nav ul{
    list-style:none;
    display:flex;
    gap:60px;
}

nav a {
    text-decoration: none;
    color: var(--beige);
    font-size: 1.15rem;
    font-family: sans-serif;
    letter-spacing: 1px;
    padding: 8px 14px;
    border-radius: 1px;

    transition: all 0.3s ease;
}

/* glass effect */
nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(0.05px);
    -webkit-backdrop-filter: blur(0.05px);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

/* HERO SECTION */
.hero{
    position:relative;
    width:100%;
    height:100vh;

    background:
    linear-gradient(
        rgba(49,59,48,.87),
        rgba(49,59,48,.87)
    ),
    url("images/2.png");

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

.heroa{
    position:relative;
    width:100%;
    height:100vh;

    background:
    linear-gradient(
        rgb(230, 218, 200),
        rgb(230, 218, 200)
    );

    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;

    display:flex;
    justify-content:center;
    align-items:center;
    overflow:hidden;
}

/* CONTENT */
.content{
    text-align:center;
    color:var(--white);
    margin-bottom: 60px;
}

/* TITLE */
h1{
    font-size:4rem;
    font-weight:300;
    color:var(--white);
    margin-bottom:70px;
}

/* DATE */
.date{
    color:var(--beige);
    font-size:2.8rem;
    letter-spacing:14px;
    margin-bottom:20px;
}

/* RSVP BUTTON */
.rsvp-btn{
    font-family: 'Cinzel Decorative', serif;
    display:inline-block;
    padding:18px 60px;
    margin-top:20px;
    margin-bottom:20px;
    text-decoration:none;
    color:var(--beige);
    font-size:1.5rem;
    border-radius:999px;
    border:1px solid rgba(216,204,184,.2);
    backdrop-filter:blur(0.05px);
    box-shadow: inset 0 1px 12px rgba(255,255,255,.12);
    transition: all 0.3s ease;
}

.rsvp-btn:hover {
    transform: translateY(-3px);
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.01),
        rgba(255, 255, 255, 0.05)
    );
}
.rsvp-btn:hover {
    transform: translateY(-3px);
    box-shadow: inset 0 1px 12px rgba(255,255,255,.18),
                0 8px 20px rgba(0,0,0,.15);
}

.logo {
    padding-top: 5px;
    width: 400px;
    height: auto;
}
.image{
    width: 100%;
    height: auto;
 
}
.image1{
    display: none;
}
.video-section {
    background-color: beige;
}

.bg-video {
    width: 100%;
    height: 100%;
    padding: 5px;
    object-fit:fill;

}
.schedule-section{
    position: relative;
}
/* all clickable zones */
.zone{
    position: absolute;
    left: 0;
    width: 100%;
    z-index: 10;
}

/* TOP area */
.zone.top{
    top: 0;
    height: 33%;
}

/* MIDDLE area */
.zone.middle{
    top: 33%;
    height: 34%;
}

/* BOTTOM area */
.zone.bottom{
    top: 67%;
    height: 33%;
}
/* Main positioning wrapper */
.countdown-overlay {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 999;
    pointer-events: none;
}

/* Flex container holding all the time blocks */
.countdown-box {
    display: flex;
    gap: 16px; 
    padding: 10px;
}

/* The individual transparent "Flip" blocks */
.countdown-box > div {
    position: relative;
    min-width: 85px;
    height: 95px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 25px; 
    
    /* Transparent Glassmorphism Style */
    background: rgba(255, 255, 255, 0.08); /* White transparency */
    backdrop-filter: blur(6px);            /* Blurs the background behind the cards */
    -webkit-backdrop-filter: blur(6px);
    
    /* Rounded corners matching the screenshot */
    border-radius: 14px;
    
    /* Subtle outer shadow + a semi-transparent white border to catch the light */
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.25);
}

/* The physical split-line seam across the center of the transparent card */
.countdown-box > div::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.15); /* Light line to blend with the transparency */
    box-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2); /* Dark shadow underneath the line for depth */
    z-index: 2;
}

/* Big bold numbers */
.countdown-box span {
    font-size: 3.2rem;
    font-weight: 700;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #d8ccb8; /* Restored your original elegant text color */
    line-height: 1;
    z-index: 1;
    margin-top: -5px; 
}

/* Labels placed neatly underneath the boxes */
.countdown-box p {
    position: absolute;
    bottom: -25px; 
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
    margin: 0;
    
    font-size: 0.65rem;
    font-family: sans-serif;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: #d8ccb8; /* Restored your original text color */
    opacity: 0.8;
}
/* Container for the background image and buttons */
.registry-section {
    position: relative;
    width: 100%;
    display: flex;
    justify-content: center; /* Centers items horizontally */
}

/* Ensure the background image dictates the space or covers correctly */


/* Absolute position box to force buttons to the bottom center */
.registry-buttons-container {
    position: absolute;
    bottom: 10%;            /* Adjust this percentage to move buttons higher or lower on the image */
    left: 50%;
    transform: translateX(-50%);
    
    display: flex;
    gap: 290px;             /* Space between Amazon and Venmo buttons */
    z-index: 10;
}
/* RSVP / REGISTRY BUTTONS */
.r-btn {
    font-family: sans-serif;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding:18px 60px;  
    text-decoration: none;
    color: var(--beige);
    font-size: 1.2rem;     
    border-radius: 999px;
    
    /* Subtle transparent border using your color tint */
    border: 1px solid rgba(49, 59, 48, 0.4);

    /* --- TRANSPARENT SAGE GREEN --- */
    /* 49, 59, 48 is the RGB equivalent of #313b30. 0.45 makes it 45% transparent */
    background: #313b30;
    
    /* Enables the frosted glass look over the background image */
    backdrop-filter: blur(6px); 
    -webkit-backdrop-filter: blur(6px);
    
    /* Soft white inner glow to catch the lighting over the background */
    box-shadow: inset 0 1px 8px rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

/* Hover effects */
.r-btn:hover {
    transform: translateY(-3px);
    
    /* Becomes slightly less transparent and shifts lighting on hover */
    background: linear-gradient(
        180deg,
        rgba(49, 59, 48, 0.65),
        rgba(49, 59, 48, 0.75)
    );
    
    /* Border lights up slightly to your solid tone */
    border-color: rgba(49, 59, 48, 0.9);
    
    /* Outer drop shadow for depth and an inner shadow glow */
    box-shadow: inset 0 1px 12px rgba(255, 255, 255, 0.1),
                0 8px 24px rgba(0, 0, 0, 0.25);
}
.video-section {
    position: relative;
}

.video-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);

    width: 80px;
    height: 80px;

    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);

    background: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(10px);

    color: white;
    font-size: 24px;

    display: flex;
    align-items: center;
    justify-content: center;

    cursor: pointer;
    z-index: 10;

    transition: 0.3s ease;

    opacity: 0;
    pointer-events: none;
}

/* show button */
.video-btn.show {
    opacity: 1;
    pointer-events: auto;
}


/* RESPONSIVE */
@media(max-width:768px){

    nav ul{
        gap:20px;
        flex-wrap:wrap;
    }
    nav a {
        text-decoration: none;
        color: var(--beige);
        font-size: .6rem;
        font-family: sans-serif;
        letter-spacing: .5px;
        padding: 2px 4px;
        border-radius: 1px;
        transition: all 0.3s ease;
    }
    
    h1{
        display: none;
    }
    .date{
        font-size:2rem;
        letter-spacing:6px;
    }
    .logo {

        width: 350px;
        height: auto;
    }

    .rsvp-btn{
        padding:14px 40px;
        font-size:1.1rem;
    }
    nav{
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 70px;
    }
    /* HERO SECTION */
    .hero{
        position:relative;
        width:100%;
        height:100vh;

        background:
        linear-gradient(
            rgba(49,59,48,.87),
            rgba(49,59,48,.87)
        ),
        url("images/15.jpg");

        background-size:cover;
        background-position:center;
        background-repeat:no-repeat;

        display:flex;
        justify-content:center;
        align-items:center;
        overflow:hidden;
    }
    .heroa {
        display: none;
    }
    .image {
        display: none;
    }
    .image1{
        display: inline;
        width: 100%;
        height: auto;
    }
    .schedule-section{
        position: relative;
    }
    /* all clickable zones */
    .zone{
        position: absolute;
        left: 0;
        width: 100%;
        z-index: 10;
    }
    
    /* TOP area */
    .zone.top{
        top: 0;
        height: 33%;
    }
    
    /* MIDDLE area */
    .zone.middle{
        top: 33%;
        height: 25%;
    }
    
    /* BOTTOM area */
    .zone.bottom{
        top: 57%;
        height: 33%;
    }
    .countdown-overlay {
        position: absolute;
        top: 64%;              /* Kept exactly as requested */
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 999;
        text-align: center;
        pointer-events: none;  
    }
    
    .countdown-box {
        display: flex;
        gap: 15px;             /* Slightly increased gap so the tiles look distinct */
        padding: 5px 20px;     /* Kept exactly as requested */
        
        /* Removed the background/blur from here so the outer box is invisible, 
           allowing the individual tiles below to carry the glassmorphic look */
        background: transparent; 
    }
    
    /* Styled your inner divs into individual transparent flip cards */
    .countdown-box > div {
        position: relative;
        min-width: 68px;
        height: 60px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 25px;   /* Creates space underneath for the labels */
    
        /* Your exact transparent glassmorphism properties applied to the cards */
        background: rgba(255, 255, 255, 0.15);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.2);
        border-radius: 14px;   /* Rounded corners matching the screenshot */
        
        box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
    }
    
    /* The physical split-line seam across the center of the transparent card */
    .countdown-box > div::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 0;
        width: 100%;
        height: 1px;
        background: rgba(255, 255, 255, 0.25); /* Light line to cut the transparent tile */
        box-shadow: 0px -1px 0px rgba(0, 0, 0, 0.15); /* Soft dark shadow underneath the line for depth */
        z-index: 2;
    }

    /* Big bold numbers */
    .countdown-box span {
        font-size: 2.2rem;
        font-weight: 700;
        font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
        color: #d8ccb8;        /* Re-applied your font color */
        line-height: 1;
        z-index: 1;
        margin-top: -5px; 
    }
    
    /* Labels placed neatly underneath the boxes */
    .countdown-box p {
        position: absolute;
        bottom: -25px; 
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
        margin: 0;
        
        font-size: 0.65rem;
        font-family: sans-serif;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        color: #d8ccb8;        /* Re-applied your font color */
        opacity: 0.8;
    }
 
    .r-btn {
        font-family: sans-serif;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 5px 20px;  
        text-decoration: none;
        color: var(--beige);
        font-size: .8rem;     
        border-radius: 999px;
        
        /* Subtle transparent border using your color tint */
        border: 1px solid rgba(49, 59, 48, 0.4);
    
        /* --- TRANSPARENT SAGE GREEN --- */
        /* 49, 59, 48 is the RGB equivalent of #313b30. 0.45 makes it 45% transparent */
        background: #313b30;
        
        /* Enables the frosted glass look over the background image */
        backdrop-filter: blur(6px); 
        -webkit-backdrop-filter: blur(6px);
        
        /* Soft white inner glow to catch the lighting over the background */
        box-shadow: inset 0 1px 8px rgba(255, 255, 255, 0.15);
        transition: all 0.3s ease;
    }

    .registry-buttons-container {
        position: absolute;
        top: 50%;                 /* Shifts the container up toward the first QR code */
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;   /* Stacks Amazon vertically on top of Venmo */
        align-items: center;
        gap: 140px;               /* This pushes Venmo down precisely under the second QR code */
        z-index: 10;
    }
    .video-btn {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    
        width: 50px;
        height: 50px;
    
        border-radius: 50%;
        border: 1px solid rgba(255, 255, 255, 0.3);
    
        background: rgba(255, 255, 255, 0.10);
        backdrop-filter: blur(10px);
    
        color: white;
        font-size: 24px;
    
        display: flex;
        align-items: center;
        justify-content: center;
    
        cursor: pointer;
        z-index: 10;
    
        opacity: 0;
        pointer-events: none;
        transition: 0.3s ease;
    }
    
    .video-btn.show {
        opacity: 1;
        pointer-events: auto;
    }
    

 
}