:root {
    --primary: #c9a050; /* Gold */
    --primary-light: #e6c88a;
    --secondary: #1a1a1a; /* Charcoal */
    --accent: #f8f4f0; /* Cream */
    --text-dark: #2d2d2d;
    --text-light: #666666;
    --bg-gradient: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
    --card-bg: #ffffff;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(201, 160, 80, 0.15);
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Inter', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

body {
    font-family: var(--font-body);
    background: var(--bg-gradient);
    color: var(--text-dark);
    line-height: 1.6;
    min-height: 100vh;
}

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

/* Header Section */
.header {
    text-align: left;
    margin-bottom: 5rem;
    position: relative;
}

.header::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--primary);
    margin: 1.5rem 0;
}

.title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--secondary);
    letter-spacing: -0.5px;
}

.title span {
    color: var(--primary);
}

.subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0;
    font-weight: 400;
}

/* Gallery Grid */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.5rem;
}

/* Card Design */
.card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
}

.card-image {
    position: relative;
    width: 100%;
    aspect-ratio: 4/5;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-image img {
    transform: scale(1.05);
}

.card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.card:hover .card-overlay {
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-primary {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 15px rgba(201, 160, 80, 0.3);
}

.btn-primary:hover {
    background: var(--secondary);
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* Card Content */
.card-content {
    padding: 1.25rem;
    text-align: left;
}

.badge {
    display: inline-block;
    padding: 0.3rem 0.8rem;
    background: var(--accent);
    color: var(--primary);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    margin-bottom: 0.75rem;
}

.card-content h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--secondary);
}

.card-content p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* Footer */
.footer {
    text-align: center;
    padding: 4rem 0;
    margin-top: 5rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    color: var(--text-light);
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem 0.75rem;
    }
    
    .header {
        margin-bottom: 1.5rem;
    }
    
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }
    
    .title {
        font-size: 1.4rem;
    }

    .subtitle {
        font-size: 0.85rem;
    }

    .card-content {
        padding: 0.75rem 0.5rem;
    }

    .card-content h3 {
        font-size: 0.85rem;
        margin-bottom: 0.25rem;
    }

    .card-content p {
        font-size: 0.65rem;
        -webkit-line-clamp: 1; /* Only 1 line for even smaller feel */
    }

    .badge {
        font-size: 0.55rem;
        padding: 0.2rem 0.5rem;
        margin-bottom: 0.4rem;
    }

    .btn {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }
}

@media (max-width: 480px) {
    .gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .container {
        padding: 1rem 0.5rem;
    }

    .title {
        font-size: 1.2rem;
    }

    .header::after {
        width: 40px;
        margin: 1rem 0;
    }
}
