:root {
    --primary-color: #8B4513;
    /* SaddleBrown - Earthy clay tone */
    --secondary-color: #D2691E;
    /* Chocolate */
    --text-light: #f4f4f4;
    --text-dark: #333;
    --overlay-color: rgba(0, 0, 0, 0.65);
    /* Dark overlay for readability */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
}

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

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--text-light);
    line-height: 1.6;
    background-color: #2c2c2c;
    /* Fallback */
}

/* Typography */
h1,
h2,
h3 {
    font-family: 'Playfair Display', serif;
}

a {
    color: #ffd700;
    /* Gold for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #fff;
    text-decoration: underline;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    /* Background Image setup */
    background-image: url('background.jpg');
    /* Expected filename */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    /* Parallax effect */
    padding: 2rem;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--overlay-color);
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
    max-width: 800px;
    width: 100%;
}

/* Logo */
.logo-container {
    margin-bottom: 2rem;
}

.logo {
    max-width: 250px;
    /* Adjust based on actual logo size */
    height: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

/* Headings */
.main-title {
    font-size: 3.5rem;
    margin-bottom: 0.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.subtitle {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #ddd;
}

.under-construction-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffd700;
    /* Gold accent */
    margin-bottom: 3rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Contact Card - Glassmorphism */
.contact-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 15px;
    padding: 2.5rem;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    margin-top: 2rem;
    text-align: left;
}

.contact-card h2 {
    text-align: center;
    margin-bottom: 1.5rem;
    color: #fff;
    font-size: 1.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 0.5rem;
    display: inline-block;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    /* Align icons with top of text */
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.contact-item i {
    color: #ffd700;
    margin-right: 15px;
    font-size: 1.3rem;
    margin-top: 4px;
    /* Slight adjustment */
    width: 25px;
    /* Fixed width for alignment */
    text-align: center;
}

.email-list div {
    display: flex;
    flex-direction: column;
}

/* Map Section */
.map-section {
    background-color: #222;
    padding: 0;
    /* Remove padding to let map span full width if desired, or keep centered */
    display: flex;
    justify-content: center;
}

.map-container {
    width: 100%;
    height: 400px;
    background-color: #333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
}

.map-placeholder {
    text-align: center;
    padding: 2rem;
    border: 2px dashed #555;
    border-radius: 10px;
}

/* Footer */
footer {
    background-color: #1a1a1a;
    color: #888;
    text-align: center;
    padding: 1.5rem;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .main-title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.2rem;
    }

    .contact-card {
        padding: 1.5rem;
    }

    .contact-item {
        font-size: 1rem;
    }
}