/*
Theme Name: WedPress26
Description: A refined, watercolor-inspired theme for the Broadoaks Country House wedding.
Author: Gemini
Version: 1.0
*/

:root {
    --wedding-gold: #b59b6d;
    --wedding-cream: #fdfcf8;
    --wedding-text: #4a4a4a;
}

body {
    background-color: var(--wedding-cream);
    color: var(--wedding-text);
    font-family: 'Playfair Display', serif; /* Matching the main serif choice */
    margin: 0;
}

h1, h2, .site-title {
    font-family: 'Cinzel', serif; /* Matching the stone-cut headers */
    color: var(--wedding-gold);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-section {
    background: url('assets/images/hero-illustration.jpg') no-repeat center center;
    background-size: cover;
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .welcome-text {
	background: rgba(3,3,3,0.7);
	width: 100%;
	text-align: center;
}

.site-branding {
	text-align: center;
}

.site-footer {
	vertical-align: bottom;
}

hr {
	color: var(--wedding-gold);
}

/* =========================================
   Navigation Menu Styling
   ========================================= */

/* Main Navigation Container */
.main-navigation {
    margin-top: 30px;
    text-align: center;
    border-top: 1px solid #e0d5c1; /* Subtle border matching the menu invite */
    border-bottom: 1px solid #e0d5c1;
    padding: 15px 0;
}

.nav-wrapper ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-wrapper li {
    margin: 0 25px;
    position: relative;
}

/* Menu Links */
.nav-wrapper a {
    text-decoration: none;
    font-family: 'Cinzel', serif; /* Matches the header typography */
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #4a4a4a; /* Deep charcoal for readability */
    transition: color 0.3s ease;
    padding-bottom: 5px;
    display: block;
}

/* Hover & Active States */
.nav-wrapper a:hover,
.nav-wrapper .current-menu-item > a {
    color: #b59b6d; /* The specific Wedding Gold */
    border-bottom: 1px solid #b59b6d; /* Adds a subtle gold underline on hover */
}

/* Mobile Menu Toggle (Hidden on Desktop) */
.menu-toggle {
    display: none;
    background: none;
    border: 1px solid #b59b6d;
    color: #b59b6d;
    font-family: 'Cinzel', serif;
    text-transform: uppercase;
    padding: 10px 20px;
    cursor: pointer;
    margin: 0 auto;
}

/* Responsive Styles for Mobile */
@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block; /* Show button on small screens */
    }

    .nav-wrapper {
        display: none; /* Hidden by default on mobile until toggled */
        margin-top: 20px;
    }

    .nav-wrapper ul {
        flex-direction: column;
    }

    .nav-wrapper li {
        margin: 15px 0;
    }
    
    /* When the menu is toggled open (requires a small JS snippet to add class 'toggled') */
    .main-navigation.toggled .nav-wrapper {
        display: block;
    }
}

/* =========================================
   Order of Events Timeline
   ========================================= */

.timeline-container {
   /* padding: 60px 20px;
    background-color: #fdfcf8; /* Wedding Cream */
    text-align: center;
}


.timeline {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

/* The Vertical Line */
.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%; /* Center the line */
    width: 2px;
    background: #e0d5c1; /* Subtle border color */
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    clear: both;
}

/* Time displayed on the Left */
.timeline-time {
    position: absolute;
    left: 0;
    width: 40%;
    text-align: right;
    font-family: 'Cinzel', serif;
  /*  color: var(--wedding-text); */
    font-weight: bold;
    top: 10px;
    padding-right: 30px;
}

/* The Center Icon Circle */
.timeline-icon {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: #fff;
    border: 2px solid #b59b6d; /* Gold Border */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    color: #b59b6d; /* Gold Icon Color */
}

/* Content displayed on the Right */
.timeline-content {
    margin-left: 60%; /* Push to the right side */
    text-align: left;
    padding-left: 20px;
}

.timeline-content h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    color: #4a4a4a;
    margin: 0 0 5px 0;
    text-transform: uppercase;
}

.timeline-content p {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    color: #777;
    margin: 0;
    font-style: italic;
}

/* Mobile Responsiveness */
@media screen and (max-width: 600px) {
    .timeline::before {
        left: 20px; /* Move line to the left */
    }
    
    .timeline-time {
        position: relative;
        left: 0;
        width: 100%;
        text-align: left;
        padding-left: 60px;
        margin-bottom: 5px;
        display: block;
    }

    .timeline-icon {
        left: 20px; /* Align icon with the line */
    }

    .timeline-content {
        margin-left: 60px; /* Push content next to icon */
        padding-top: 5px;
    }
}