:root {
    --primary-color: #2c2c2c;
    --secondary-color: #d4af37;
    --accent-color: #c0c0c0;
    --text-primary: #333;
    --text-secondary: #666;
    --background: #f8f8f8;
    --white: #ffffff;
    --border-color: #e5e5e5;
    --silver: #b8b8b8;
    --gold: #ffd700;
    --dark-silver: #808080;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

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

/* Navigation */
.navbar {
    background-color: var(--white);
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--silver);
}

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

.logo {
    font-size: 32px;
    font-weight: 300;
    color: var(--primary-color);
    letter-spacing: 2px;
    text-shadow: 1px 1px 2px rgba(192, 192, 192, 0.3);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(248, 248, 248, 0.85) 0%, rgba(44, 44, 44, 0.4) 100%), 
                url('/dinner.png') center/cover;
    background-size: cover;
    background-position: center;
    text-align: center;
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
    animation: shimmer 20s linear infinite;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

.hero-title {
    font-size: 64px;
    margin-bottom: 20px;
    font-weight: 300;
    letter-spacing: 3px;
}

.hero-subtitle {
    font-size: 18px;
    margin-bottom: 40px;
    color: var(--text-secondary);
    font-weight: 300;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-silver) 100%);
    color: var(--white);
    border: 1px solid var(--gold);
    padding: 16px 40px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.cta-button:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary-color) 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Subtle gallery background image with soft fade */
.about-section::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 50%;
    height: 140%;
    background: url('/gallery.png') center/cover;
    opacity: 0.15;
    transform: rotate(-5deg);
    border-radius: 30px;
    mask: radial-gradient(ellipse at center, black 60%, transparent 80%);
    -webkit-mask: radial-gradient(ellipse at center, black 60%, transparent 80%);
    z-index: 0;
}

.about-section .container {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 48px;
    text-align: center;
    margin-bottom: 60px;
    color: var(--primary-color);
    font-weight: 300;
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.about-card {
    text-align: center;
    padding: 40px;
    border: 1px solid var(--silver);
    background: linear-gradient(135deg, var(--white) 0%, rgba(192, 192, 192, 0.05) 100%);
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.about-card:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.2);
}

.about-card h3 {
    font-size: 28px;
    margin-bottom: 20px;
    color: var(--primary-color);
    font-weight: 400;
}

.about-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background-color: var(--background);
    position: relative;
}


.process-section .container {
    position: relative;
    z-index: 1;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 60px;
}

.step {
    text-align: center;
}

.step-number {
    font-family: 'Cormorant Garamond', serif;
    font-size: 48px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    font-weight: 300;
}

.step h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.step p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Success Section */
.success-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
    overflow: hidden;
}

/* Wedding photo as elegant background overlay */
.success-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/wedding.png') center/cover;
    opacity: 0.2;
    filter: sepia(20%) brightness(1.1);
    z-index: 0;
}

.success-section .container {
    position: relative;
    z-index: 1;
}

.success-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid var(--silver);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.1);
}

.success-text {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-primary);
    font-style: italic;
    margin-bottom: 30px;
    font-family: 'Cormorant Garamond', serif;
}

.success-attribution {
    font-size: 14px;
    color: var(--secondary-color);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Footer */
footer {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-silver) 100%);
    color: var(--white);
    text-align: center;
    padding: 40px 0;
    border-top: 2px solid var(--gold);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    padding: 40px;
    border: 1px solid var(--gold);
    width: 90%;
    max-width: 400px;
    position: relative;
    animation: modalFade 0.3s ease;
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.3);
}

@keyframes modalFade {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}

.close {
    color: var(--text-secondary);
    float: right;
    font-size: 28px;
    font-weight: 300;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.modal h2 {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    font-weight: 300;
}

.modal form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.modal input {
    padding: 15px;
    border: 1px solid var(--silver);
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    transition: border-color 0.3s ease;
    background-color: rgba(248, 248, 248, 0.5);
}

.modal input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

.submit-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--dark-silver) 100%);
    color: var(--white);
    border: 1px solid var(--gold);
    padding: 15px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    box-shadow: 0 2px 10px rgba(212, 175, 55, 0.2);
}

.submit-btn:hover {
    background: linear-gradient(135deg, var(--gold) 0%, var(--secondary-color) 100%);
    box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.modal-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: var(--text-secondary);
}

.modal-footer a {
    color: var(--secondary-color);
    text-decoration: none;
}

.modal-footer a:hover {
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .section-title {
        font-size: 36px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
}