/* Color Scheme - Elegant Jewel Tone Theme */
:root {
    /* Primary jewel tone palette */
    --primary-color: #4F0E39;       /* Deep ruby/burgundy  */ 
    --secondary-color: #0C4F4A;     /* Rich emerald */
    --accent-color: #7A4E0C;        /* Topaz/amber */
    
    /* Background colors */
    --light-color: #F8F6F0;         /* Soft ivory */
    --dark-color: #1B1425;          /* Deep aubergine/navy */
    
    /* Text colors */
    --text-color: #292F36;          /* Dark navy for main text */
    --text-light: #F8F6F0;          /* Light ivory text */
    
    /* Additional jewel accent colors */
    --accent-sapphire: #0F3D78;     /* Deep sapphire blue */
    --accent-amethyst: #4A1D66;     /* Rich amethyst purple */
    --accent-jade: #154734;         /* Deep jade green */
    
    /* Success/Alert colors - more sophisticated versions */
    --success: #154734;             /* Deep jade for success messages */
    --error: #6E0D25;               /* Deep burgundy for error states */
    --warning: #7A4E0C;             /* Amber for warnings */
}

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

body {
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    background-color: var(--light-color);
    color: var(--text-color);
    line-height: 1.8;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 2rem;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* Header Styles */
header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.names {
    font-family: 'Playfair Display', serif;
    font-size: 5.5rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 4px;
    margin-bottom: 0.5rem;
}

/* Wedding Info */
.wedding-info {
    font-family: 'Playfair Display', serif;
    text-align: center;
    margin-top: 3rem;
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--accent-color);
    letter-spacing: 1px;
}

/* Subpage Styles */
.subpage header {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
}

.subpage-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    letter-spacing: 2px;
}

.back-home {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--accent-color);
    text-decoration: none;
    margin-top: 0.8rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.back-home:hover {
    color: var(--primary-color);
}

.content {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    padding: 3rem;
    background-color: white;
    border-radius: 2px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    position: relative;
}

/* Static Navigation */
.static-nav {
    width: 100%;
    margin: 1.5rem 0 3rem;
    text-align: center;
}

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

.nav-links li {
    margin: 0.5rem 1.5rem;
}

.nav-link {
    position: relative;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--text-color);
    text-decoration: none;
    padding: 0.5rem 0;
    transition: color 0.3s ease;
}

.nav-link:hover, 
.nav-link.active {
    color: var(--primary-color);
}

/* Elegant underline effect */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after, 
.nav-link.active::after {
    width: 100%;
}

/* Decorative dot for active link */
.nav-link.active::before {
    content: '🪩';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%) translateY(20%);
    font-size: 14px; /* Adjust emoji size */
}

/* Elegant divider between sections */
.elegant-divider {
    width: 120px;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--accent-color), transparent);
    margin: 1.5rem auto;
}

/* Welcome message styling */
.welcome-message {
    text-align: center;
    margin: 2rem auto 3rem;
}

.welcome-message h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.4rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    letter-spacing: 1.5px;
}

.welcome-message p {
    font-size: 1.2rem;
    color: var(--accent-color);
    font-weight: 300;
    letter-spacing: 0.5px;
}

/* Content home specific */
.content-home {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

/* Elegant section headings */
.content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    text-align: center;
    letter-spacing: 1.5px;
}

/* Elegant divider after h2 */
.content h2:after {
    content: "";
    display: block;
    width: 80px;
    height: 2px;
    background-color: var(--accent-color);
    margin: 1rem auto 2rem;
}

.content p {
    margin-bottom: 1.5rem;
    font-weight: 300;
    line-height: 1.8;
}

/* Venue Page Specific Styles */
.venue-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin: 2.5rem 0;
}

.our-vision {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin: 2.5rem 0;
}

.detail h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-sapphire);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.venue-photos {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin: 2.5rem 0;
}

.photo-placeholder {
    height: 200px;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    color: var(--accent-color);
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.venue-info-details h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-sapphire);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.venue-info-details ul {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.venue-info-details li {
    margin-bottom: 0.5rem;
}

/* Accommodations Page Styles */
.accommodation-option {
    margin-bottom: 2.5rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid rgba(122, 78, 12, 0.2);
}

.accommodation-option:last-child {
    border-bottom: none;
}

.accommodation-option h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-sapphire);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.transportation h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.accommodation-option ul {
    list-style-type: none;
    padding: 0;
}

.accommodation-option li {
    margin-bottom: 2rem;
    padding-left: 1rem;
    border-left: 2px solid var(--accent-color);
}

/* Room display styling for accommodations page */
.rooms {
    margin: 2rem 0;
}

.room-item {
    display: grid;
    grid-template-columns: .8fr 1.7fr;
    gap: 2rem;
    margin-bottom: 0rem;
    padding-bottom: 0rem;
}

.room-item:last-child {
    border-bottom: none;
}

.room-photo {
    height: 0;
    padding-top: 10%; /* Creates a 4:3 aspect ratio */
    padding-bottom: 65%; /* Creates a 4:3 aspect ratio */
    position: relative;
  }
  
  .room-photo img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

.room-info h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.room-info p {
    margin-bottom: 1rem;
}

.room-features {
    margin-top: 1.5rem;
}

.room-features ul {
    list-style-type: none;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.5rem;
}

.room-features li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.5rem;
}

.room-features li:before {
    content: "✦";
    position: absolute;
    left: 0;
    color: var(--accent-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .room-item {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .room-photo {
        height: 250px;
    }
}

/* full width photo */
.full-width-photo {
    width: 100%;
    height: auto;
    margin: 2.5rem 0;
    border-radius: 2px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.transportation h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-sapphire);
    margin: 2rem 0 1rem;
    font-size: 1.5rem;
    letter-spacing: 1px;
}

.transportation h4 {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-color);
    margin: 1.5rem 0 0.5rem;
    font-size: 1.1rem;
    font-weight: 500;
}

.transportation ol {
    margin-left: 1.5rem;
    margin-bottom: 2rem;
}

.transportation li {
    margin-bottom: 0.5rem;
}

/* RSVP Page Specific Styles */
.google-form {
    margin: 2.5rem 0;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.rsvp-contact {
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(122, 78, 12, 0.2);
    font-size: 0.95rem;
    text-align: center;
}

/* Schedule Page Styles */
.day {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
}

.day:last-child {
    border-bottom: none;
}

.day h3 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px dashed rgba(122, 78, 12, 0.3);
    font-size: 1.6rem;
    letter-spacing: 1px;
}

.event {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.time {
    font-weight: 500;
    color: var(--accent-color);
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

.event-details h4 {
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.8rem;
    color: var(--accent-sapphire);
    font-size: 1.3rem;
}

.schedule-notes {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(122, 78, 12, 0.2);
}

.schedule-notes h3 {
    font-family: 'Playfair Display', serif;
    color: var(--accent-sapphire);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    letter-spacing: 1px;
    border-bottom: none;
    padding-bottom: 0;
}

.schedule-notes ul {
    margin-left: 1.5rem;
}

.schedule-notes li {
    margin-bottom: 0.8rem;
}

/* Links styling */
a {
    color: var(--accent-sapphire);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-color);
}

/* Elegant form styling */
input, select, textarea {
    border: 1px solid rgba(122, 78, 12, 0.2);
    padding: 0.8rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    width: 100%;
    margin-bottom: 1.5rem;
    border-radius: 2px;
}

button, .button {
    background-color: var(--primary-color);
    color: white;
    border: none;
    padding: 0.8rem 2rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    border-radius: 2px;
    transition: background-color 0.3s ease;
}

button:hover, .button:hover {
    background-color: var(--accent-sapphire);
}

/* No animations - all content is immediately visible */
.fade-in, .content > * {
    opacity: 1;
    transform: none;
}

.content.loaded > * {
    opacity: 1;
    transform: none;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .names {
        font-size: 3.5rem;
        letter-spacing: 2px;
    }
    
    .wedding-info {
        font-size: 1.2rem;
    }
    
    .subpage-title {
        font-size: 2.5rem;
    }
    
    .back-home {
        font-size: 1.2rem;
    }
    
    .content {
        padding: 2rem;
    }
    
    .venue-details {
        grid-template-columns: 1fr;
    }
    
    .venue-photos {
        grid-template-columns: 1fr;
    }
    
    .event {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }
    
    .nav-links {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 1rem;
    }
    
    .nav-links li {
        margin: 0.5rem 1rem;
    }
    
    .nav-link {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .names {
        font-size: 2.8rem;
    }
    
    .container {
        padding: 2rem 1rem;
    }
    
    .content {
        padding: 1.5rem;
    }
    
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .nav-links li {
        margin: 0.5rem 0;
    }
    
    .static-nav {
        margin: 1.5rem 0 2rem;
    }
    
    .welcome-message h2 {
        font-size: 2rem;
    }
    
    .welcome-message p {
        font-size: 1rem;
    }
}

