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

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: #333;
    line-height: 1.6;
}

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

/* Header Styles */
header {
    background-color: transparent;
    position: absolute;
    width: 100%;
    top: 0;
    z-index: 1000;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
}

.logo img {
    height: 60px;
    width: auto;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: #d4a574;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    padding: 10px 0;
}

nav a:hover,
nav a.active {
    color: #fff;
}

/* Hamburger Button */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: #d4a574;
    font-size: 30px;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

/* Main Content */
main {
    margin-top: 0;
}

/* Page Hero */
.page-hero {
    height: 30vh;
    background: linear-gradient(rgba(0,0,0,0.5), rgba(0,0,0,0.5)), url('images/gallery007.jpg') center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.hero-overlay {
    text-align: center;
    color: white;
    z-index: 2;
}

.hero-overlay h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.hero-overlay p {
    font-size: 28px;
    font-weight: 300;
    text-align: center;
    line-height: 1.3;
    margin: 0;
    color: #d4a574;
}

/* Contact Content */
.contact-content {
    background-color: #f0f0f0;
    color: #333;
    padding: 60px 20px;
}

.contact-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 40px;
}

.contact-intro h2 {
    font-size: 40px;
    margin-bottom: 20px;
    color: #333;
}

.contact-intro p {
    font-size: 18px;
    color: #333;
    line-height: 1.8;
}

/* Contact Simple */
.contact-simple {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 20px;
}

.contact-simple p {
    font-size: 24px;
    color: #333;
    line-height: 1.8;
}

.contact-simple a {
    color: #d4a574;
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-simple a:hover {
    color: #fff;
}

/* Contact Details */
.contact-details {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-details p {
    font-size: 18px;
    color: #333;
    line-height: 2;
    text-align: left;
}

.contact-details a {
    color: #333;
    text-decoration: none;
}

.contact-details a:hover {
    color: #d4a574;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    padding: 30px 20px;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 768px) {
    header .container {
        flex-direction: row;
        justify-content: space-between;
        gap: 0;
    }

    .hamburger {
        display: block;
    }

    nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: rgba(0, 0, 0, 0.92);
        padding: 20px 30px;
    }

    nav.open {
        display: block;
    }

    nav ul {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .hero-overlay h1 {
        font-size: 32px;
    }

    .hero-overlay p {
        font-size: 20px;
    }

    .contact-intro h2 {
        font-size: 32px;
    }

    .contact-simple p {
        font-size: 20px;
    }

    .contact-content {
        padding: 60px 20px;
    }
}
