/* Wedding Website Styles - v2 */
/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Lato', sans-serif;
    line-height: 1.6;
    color: #f5f0e6;
    background-color: #5c5c4a;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(92, 92, 74, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(245, 240, 230, 0.2);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: #f5f0e6;
    text-decoration: none;
    letter-spacing: 3px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav-glass {
    opacity: 0.8;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: #f5f0e6;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 1px;
    transition: opacity 0.3s ease;
    opacity: 0.8;
}

.nav-menu a:hover {
    opacity: 1;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-color: #5c5c4a;
    position: relative;
    overflow: hidden;
}

.hero-content {
    position: relative;
    z-index: 1;
}

/* Hand-drawn decorations */
.hero-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.deco-bottle {
    position: absolute;
    width: 70px;
    height: auto;
    opacity: 0.85;
}

.deco-glass {
    position: absolute;
    width: 55px;
    height: auto;
    opacity: 0.85;
}

.deco-heart {
    position: absolute;
    width: 22px;
    height: auto;
    opacity: 0.75;
}

/* Position 1: Wine bottle - far left - LARGE */
.deco-pos-1 {
    left: 5%;
    top: 15%;
    width: 110px;
}

/* Position 2: Coupe glass - left upper - SMALL */
.deco-pos-2 {
    left: 18%;
    top: 8%;
    width: 40px;
}

/* Position 3: Martini glass - left middle - MEDIUM */
.deco-pos-3 {
    left: 8%;
    top: 55%;
    width: 55px;
}

/* Position 4: Heart - left side - SMALL */
.deco-pos-4 {
    left: 22%;
    top: 40%;
    width: 18px;
}

/* Position 5: Champagne bottle - far right - LARGE */
.deco-pos-5 {
    right: 5%;
    top: 25%;
    width: 105px;
}

/* Position 6: Highball glass - right upper - SMALL */
.deco-pos-6 {
    right: 18%;
    top: 10%;
    width: 32px;
}

/* Position 7: Wine glass - right middle - LARGE */
.deco-pos-7 {
    right: 8%;
    top: 60%;
    width: 70px;
}

/* Position 8: Heart - right side - MEDIUM */
.deco-pos-8 {
    right: 22%;
    top: 45%;
    width: 25px;
}

/* Position 9: Coupe glass - bottom left - MEDIUM */
.deco-pos-9 {
    left: 12%;
    bottom: 12%;
    width: 50px;
}

/* Position 10: Small bottle - bottom right - SMALL */
.deco-pos-10 {
    right: 15%;
    bottom: 8%;
    width: 60px;
}

/* Position 11: Flute glass - upper middle left - EXTRA SMALL */
.deco-pos-11 {
    left: 28%;
    top: 18%;
    width: 22px;
}

/* Position 12: Heart - bottom middle - LARGE */
.deco-pos-12 {
    right: 30%;
    bottom: 20%;
    width: 30px;
}

/* Position 13: Rocks glass - bottom far right - MEDIUM */
.deco-pos-13 {
    right: 3%;
    bottom: 15%;
    width: 48px;
}

@media (max-width: 768px) {
    .deco-bottle {
        width: 45px;
    }
    .deco-glass {
        width: 35px;
    }
    .deco-heart {
        width: 16px;
    }
    .deco-pos-1 { left: 2%; top: 12%; }
    .deco-pos-2 { left: 10%; top: 5%; width: 35px; }
    .deco-pos-3 { left: 3%; top: 50%; width: 35px; }
    .deco-pos-5 { right: 2%; top: 20%; }
    .deco-pos-6 { right: 12%; top: 8%; width: 28px; }
    .deco-pos-7 { right: 3%; top: 55%; width: 35px; }
    .deco-pos-9 { left: 5%; bottom: 10%; width: 32px; }
    .deco-pos-10 { right: 8%; bottom: 5%; width: 40px; }
    .deco-pos-11 { left: 20%; top: 15%; width: 22px; }
    .deco-pos-13 { right: 1%; bottom: 12%; width: 32px; }
}

.hero-subtitle {
    font-size: 1.1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: #f5f0e6;
    margin-bottom: 30px;
    font-weight: 400;
}

.hero-title {
    font-size: 4rem;
    color: #f5f0e6;
    margin-bottom: 30px;
    letter-spacing: 2px;
    font-weight: 400;
}

.hero-date {
    font-size: 1.3rem;
    color: #f5f0e6;
    font-weight: 300;
    letter-spacing: 3px;
    opacity: 0.9;
}

/* Section Styles */
.section-title {
    font-size: 2.2rem;
    text-align: center;
    margin-bottom: 50px;
    color: #f5f0e6;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 4px;
    font-weight: 400;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 1px;
    background: #f5f0e6;
    margin: 20px auto 0;
    opacity: 0.5;
}

/* Engagement Party Section */
.engagement-section {
    padding: 100px 0;
    background-color: #5c5c4a;
    position: relative;
}

.engagement-content {
    max-width: 900px;
    margin: 0 auto;
}

.party-info h3 {
    font-size: 1.6rem;
    text-align: center;
    color: #f5f0e6;
    margin-bottom: 20px;
    font-style: italic;
    font-weight: 400;
}

.party-description {
    text-align: center;
    font-size: 1.05rem;
    color: #f5f0e6;
    max-width: 700px;
    margin: 0 auto 50px;
    line-height: 1.9;
    opacity: 0.9;
}

.info-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.info-card {
    background: rgba(245, 240, 230, 0.08);
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s ease, background 0.3s ease;
    border: 1px solid rgba(245, 240, 230, 0.15);
}

.info-card:hover {
    transform: translateY(-3px);
    background: rgba(245, 240, 230, 0.12);
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.info-card h4 {
    font-size: 0.9rem;
    color: #f5f0e6;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.info-card p {
    color: #f5f0e6;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
}

/* Location Details Section */
.location-section {
    padding: 100px 0;
    background-color: #4a4a3a;
    position: relative;
}

.location-content {
    max-width: 800px;
    margin: 0 auto;
}

.location-card {
    text-align: center;
    margin-bottom: 50px;
}

.location-icon {
    margin-bottom: 20px;
}

.location-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #f5f0e6;
    margin-bottom: 10px;
    font-weight: 400;
}

.location-card p {
    color: #f5f0e6;
    font-size: 1.1rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 20px;
}

.location-link {
    display: inline-block;
    color: #f5f0e6;
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 1px;
    padding: 10px 25px;
    border: 1px solid rgba(245, 240, 230, 0.4);
    border-radius: 6px;
    transition: all 0.3s ease;
}

.location-link:hover {
    background: rgba(245, 240, 230, 0.1);
    border-color: rgba(245, 240, 230, 0.6);
}

.details-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.detail-card {
    background: rgba(245, 240, 230, 0.08);
    padding: 30px 25px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(245, 240, 230, 0.15);
}

.detail-icon {
    margin-bottom: 15px;
}

.detail-card h4 {
    font-size: 0.9rem;
    color: #f5f0e6;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.detail-card p {
    color: #f5f0e6;
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.85;
}

@media (max-width: 600px) {
    .details-cards {
        grid-template-columns: 1fr;
    }
}

/* RSVP Section */
.rsvp-section {
    padding: 100px 0;
    background-color: #5c5c4a;
    position: relative;
}

.rsvp-subtitle {
    text-align: center;
    font-size: 1.05rem;
    color: #f5f0e6;
    margin-top: -30px;
    margin-bottom: 40px;
    font-style: italic;
    opacity: 0.85;
}

.rsvp-form {
    max-width: 480px;
    margin: 0 auto;
    background: rgba(245, 240, 230, 0.06);
    padding: 50px 40px;
    border-radius: 16px;
    border: 1px solid rgba(245, 240, 230, 0.15);
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #f5f0e6;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.form-group input[type="text"] {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid rgba(245, 240, 230, 0.3);
    border-radius: 8px;
    font-size: 1rem;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s ease, background 0.3s ease;
    background: rgba(245, 240, 230, 0.08);
    color: #f5f0e6;
}

.form-group input[type="text"]:focus {
    outline: none;
    border-color: rgba(245, 240, 230, 0.6);
    background: rgba(245, 240, 230, 0.12);
}

.form-group input[type="text"]::placeholder {
    color: rgba(245, 240, 230, 0.4);
}

/* Radio Buttons */
.radio-group {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 15px 20px;
    border: 1px solid rgba(245, 240, 230, 0.3);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: rgba(245, 240, 230, 0.08);
    color: #f5f0e6;
}

.radio-label:hover {
    border-color: rgba(245, 240, 230, 0.5);
    background: rgba(245, 240, 230, 0.12);
}

.radio-label input[type="radio"] {
    display: none;
}

.radio-custom {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(245, 240, 230, 0.5);
    border-radius: 50%;
    margin-right: 12px;
    position: relative;
    transition: all 0.3s ease;
}

.radio-label input[type="radio"]:checked + .radio-custom {
    border-color: #f5f0e6;
}

.radio-label input[type="radio"]:checked + .radio-custom::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 8px;
    height: 8px;
    background: #f5f0e6;
    border-radius: 50%;
}

.radio-label input[type="radio"]:checked ~ span:last-child {
    color: #f5f0e6;
    font-weight: 500;
}

/* Submit Button */
.submit-btn {
    width: 100%;
    padding: 16px 30px;
    background: #f5f0e6;
    color: #5c5c4a;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    font-family: 'Lato', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.submit-btn:hover {
    background: #fff;
    transform: translateY(-2px);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    background: rgba(245, 240, 230, 0.3);
    color: rgba(92, 92, 74, 0.5);
    cursor: not-allowed;
    transform: none;
}

/* Form Message */
.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    text-align: center;
    display: none;
}

.form-message.success {
    display: block;
    background: rgba(245, 240, 230, 0.15);
    color: #f5f0e6;
    border: 1px solid rgba(245, 240, 230, 0.3);
}

.form-message.error {
    display: block;
    background: rgba(255, 100, 100, 0.15);
    color: #ffb0b0;
    border: 1px solid rgba(255, 100, 100, 0.3);
}

/* Section Decorations */
.section-decorations {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.section-deco {
    position: absolute;
    opacity: 0.15;
}

.section-deco-left {
    left: 3%;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: auto;
}

.section-deco-right {
    right: 3%;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: auto;
}

@media (max-width: 768px) {
    .section-deco {
        opacity: 0.1;
    }
    .section-deco-left {
        width: 25px;
        left: 1%;
    }
    .section-deco-right {
        width: 22px;
        right: 1%;
    }
}

/* Footer */
.footer {
    background: #4a4a3a;
    color: #f5f0e6;
    text-align: center;
    padding: 40px 20px;
    font-size: 1rem;
    border-top: 1px solid rgba(245, 240, 230, 0.1);
}

.footer-decorations {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin: 15px 0;
    opacity: 0.6;
}

.footer-decorations svg {
    flex-shrink: 0;
}

/* Responsive Design */

/* Tablet */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 3px;
    }
    
    .nav-menu {
        gap: 12px;
    }
    
    .nav-menu a {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }
    
    .info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .rsvp-form {
        padding: 30px 25px;
        margin: 0 15px;
    }
    
    .location-card h3 {
        font-size: 1.5rem;
    }
    
    .details-cards {
        gap: 20px;
    }
    
    .detail-card {
        padding: 25px 20px;
    }
    
    .party-info h3 {
        font-size: 1.4rem;
    }
    
    .party-description {
        font-size: 1rem;
        padding: 0 15px;
    }
}

/* Mobile */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 2px;
    }
    
    .nav-container {
        flex-direction: column;
        gap: 12px;
        padding: 12px 15px;
    }
    
    .nav-logo {
        font-size: 1.5rem;
    }
    
    .nav-menu {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu a {
        font-size: 0.75rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        letter-spacing: 2px;
        margin-bottom: 35px;
    }
    
    .info-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .info-card {
        padding: 25px 20px;
    }
    
    .details-cards {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .detail-card {
        padding: 25px 20px;
    }
    
    .location-card h3 {
        font-size: 1.3rem;
    }
    
    .location-card p {
        font-size: 1rem;
    }
    
    .rsvp-form {
        padding: 25px 20px;
        margin: 0 10px;
    }
    
    .form-group label {
        font-size: 0.8rem;
    }
    
    .radio-group {
        gap: 10px;
    }
    
    .radio-label {
        padding: 12px 15px;
        font-size: 0.9rem;
    }
    
    .submit-btn {
        padding: 14px 25px;
        font-size: 0.9rem;
    }
    
    .party-info h3 {
        font-size: 1.2rem;
    }
    
    .party-description {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
    
    .engagement-section,
    .location-section,
    .rsvp-section {
        padding: 70px 0;
    }
    
    .footer {
        padding: 30px 15px;
        font-size: 0.9rem;
    }
}

/* Small Mobile */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.7rem;
    }
    
    .hero-subtitle {
        font-size: 0.75rem;
    }
    
    .nav-menu a {
        font-size: 0.7rem;
    }
    
    .section-title {
        font-size: 1.3rem;
    }
}
