:root {
    --ivory: #F9F6F2;
    --navy: #1F2A44;
    --bordeaux: #611427;
    --gold: #C2A660;
    --dark-bg: #0A0F1C;
    --minimal-gray: #2A2A2A;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Work+Sans:wght@300;400;500&display=swap');

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

body {
    font-family: 'Lato', sans-serif;
    background-color: var(--ivory);
    color: var(--navy);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 400;
    letter-spacing: 0.5px;
}

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

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(10, 15, 28, 0.7), rgba(10, 15, 28, 0.7)),
                url('images/hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--ivory);
    position: relative;
}

.hero-content {
    max-width: 800px;
    padding: 2rem;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-style: italic;
}

.date-venue {
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background-color: transparent;
    color: var(--ivory);
    text-decoration: none;
    border-radius: 2px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--ivory);
}

.cta-button:hover {
    background-color: var(--ivory);
    color: var(--dark-bg);
}

/* About Artist Section */
.about-artist {
    padding: 6rem 0;
    background-color: var(--dark-bg);
    color: var(--ivory);
}

.artist-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.artist-image img {
    width: 100%;
    height: auto;
    border-radius: 2px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.artist-bio h2 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 2.5rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.artist-bio p {
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.artist-bio h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin: 2rem 0 1rem;
    font-family: 'Playfair Display', serif;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.accolades-list {
    list-style-type: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.accolades-list li {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.6;
}

.accolades-list li::before {
    content: "•";
    color: var(--gold);
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

blockquote {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--ivory);
    margin: 2rem 0;
    padding-left: 2rem;
    border-left: 3px solid var(--gold);
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Celebration Details */
.celebration-details {
    padding: 6rem 0;
    background-color: var(--minimal-gray);
    color: var(--ivory);
    position: relative;
}

.celebration-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.detail-item {
    text-align: center;
    padding: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.detail-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
    opacity: 0.3;
}

.detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background: rgba(255, 255, 255, 0.1);
}

.detail-item i {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease;
}

.detail-item:hover i {
    transform: scale(1.1);
}

.program-highlights {
    margin-top: 1.5rem;
}

.highlight-item {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin: 0.8rem 0;
    color: var(--ivory);
    opacity: 0.9;
    transition: transform 0.3s ease, color 0.3s ease;
    position: relative;
    padding-left: 1.5rem;
}

.highlight-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    opacity: 0.5;
}

.highlight-item:hover {
    transform: translateX(5px);
    color: var(--gold);
}

/* Goodwill Message */
.goodwill-message {
    padding: 6rem 0;
    background-color: var(--dark-bg);
    color: var(--ivory);
    position: relative;
}

.message-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem;
    background-color: var(--navy);
    color: var(--ivory);
    text-align: center;
    border-radius: 2px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.message-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
    opacity: 0.3;
}

.legacy-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legacy-intro {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    font-style: italic;
    color: var(--ivory);
    opacity: 0.9;
}

.legacy-items {
    margin: 2rem 0;
}

.legacy-item {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin: 1rem 0;
    color: var(--ivory);
    opacity: 0.9;
    transition: transform 0.3s ease, color 0.3s ease;
    position: relative;
    padding-left: 1.5rem;
}

.legacy-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    opacity: 0.5;
}

.legacy-item:hover {
    transform: translateX(5px);
    color: var(--gold);
}

.price {
    font-size: 2.2rem;
    color: var(--gold);
    margin: 2rem 0;
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Art Gallery */
.art-gallery {
    padding: 4rem 0;
    background-color: var(--dark-bg);
    color: var(--ivory);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--minimal-gray);
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    opacity: 0.9;
}

.gallery-item:hover img {
    transform: scale(1.03);
    opacity: 1;
}

.gallery-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.15);
}

.gallery-item-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(10, 15, 28, 0.9), transparent);
    color: var(--ivory);
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.gallery-item:hover .gallery-item-info {
    transform: translateY(0);
}

.gallery-item-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    color: var(--gold);
}

.gallery-item-info p {
    font-size: 0.9rem;
    opacity: 0.9;
    margin: 0;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 15, 28, 0.95);
    z-index: 1000;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.show {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    margin: auto;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 1000;
}

.lightbox-image {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 2px;
    margin: 0 auto;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.lightbox-info {
    text-align: center;
    color: var(--ivory);
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(42, 42, 42, 0.8);
    border-radius: 2px;
    width: 100%;
    max-width: 600px;
}

.lightbox-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.lightbox-medium, .lightbox-year {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0.3rem 0;
}

.close-lightbox {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--ivory);
    font-size: 2rem;
    cursor: pointer;
    transition: color 0.3s ease;
}

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

.lightbox-nav {
    position: fixed;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    z-index: 1001;
}

.lightbox-prev, .lightbox-next {
    background: rgba(31, 42, 68, 0.8);
    color: var(--ivory);
    border: none;
    padding: 1.5rem;
    cursor: pointer;
    font-size: 2rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev:hover, .lightbox-next:hover {
    background: var(--gold);
    color: var(--navy);
    transform: scale(1.1);
}

/* Souvenirs */
.souvenirs {
    padding: 6rem 0;
    background-color: var(--minimal-gray);
    color: var(--ivory);
}

.souvenir-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.souvenir-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 2px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s ease;
}

.souvenir-item:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.souvenir-item img {
    width: 100%;
    max-width: 300px;
    height: auto;
    border-radius: 2px;
    margin-bottom: 1rem;
}

.souvenir-item h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold);
    margin-top: 1rem;
}

/* Footer */
footer {
    padding: 2rem 0;
    text-align: center;
    background-color: var(--navy);
    color: var(--ivory);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 0.8rem;
    }
    
    .gallery-item-info {
        position: relative;
        transform: none;
        background: var(--navy);
        padding: 0.8rem;
    }
    
    .gallery-item-info h3 {
        font-size: 1rem;
    }
    
    .gallery-item-info p {
        font-size: 0.8rem;
    }
    
    .hero h1 {
        font-size: 3rem;
    }

    .artist-card {
        grid-template-columns: 1fr;
    }

    .details-grid {
        grid-template-columns: 1fr;
    }

    .message-card {
        padding: 2rem;
    }

    .gallery-item-info {
        position: relative;
        transform: none;
        background: var(--navy);
        padding: 1rem;
    }
    
    .gallery-item-info h3 {
        font-size: 1.1rem;
    }
    
    .souvenir-item {
        padding: 1rem;
    }

    .legacy-title {
        font-size: 2rem;
    }
    
    .highlight-item, .legacy-item {
        font-size: 1rem;
    }

    .artist-bio h3 {
        font-size: 1.5rem;
    }
    
    .accolades-list li {
        font-size: 0.95rem;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

section {
    animation: fadeIn 1s ease-out;
}

p {
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
} 