:root {
    --primary-gold: #D4AF37;
    --dark-bg: #1a1a1a;
    --light-gold: #f5e6c6;
    --text-light: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', serif;
    background-color: var(--dark-bg);
    color: var(--text-light);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background: rgba(26, 26, 26, 0.95);
    position: fixed;
    width: 100%;
    z-index: 1000;
    border-bottom: 1px solid var(--primary-gold);
}

.logo h1 {
    font-family: 'Great Vibes', cursive;
    font-size: 2.5rem;
    color: var(--primary-gold);
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: var(--primary-gold);
}

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)),
                url('hero-bg.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}

.hero-content h2 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-gold);
    color: var(--dark-bg);
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
    transition: transform 0.3s;
}

.cta-button:hover {
    transform: scale(1.05);
}

.gallery {
    padding: 5rem 5%;
}

.gallery h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border: 2px solid var(--primary-gold);
}

.about {
    padding: 5rem 5%;
    background: linear-gradient(45deg, #2a2a2a, #1a1a1a);
    text-align: center;
}

.about h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about p {
    max-width: 800px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.contact {
    padding: 5rem 5%;
    background-color: #2a2a2a;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1.5rem;
}

.social-links a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-gold);
}

footer {
    text-align: center;
    padding: 2rem;
    background-color: #000;
    border-top: 1px solid var(--primary-gold);
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding: 1rem;
    }

    .nav-links {
        margin-top: 1rem;
    }

    .hero-content h2 {
        font-size: 2.5rem;
    }
}
/* Additional CSS for descriptions */
.post-description {
    padding: 1.5rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary-gold);
    border-top: none;
    border-radius: 0 0 10px 10px;
}

.post-description p {
    font-size: 1.1rem;
    color: var(--light-gold);
    margin-bottom: 1rem;
    min-height: 60px;
}

.insta-link {
    color: var(--primary-gold) !important;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: opacity 0.3s;
}

.insta-link:hover {
    opacity: 0.8;
}

.instagram-media {
    margin: 0 !important;
    border-radius: 10px 10px 0 0 !important;
}