/* CSS Variables - Dark Green & Gold Theme */
:root {
    --primary-color: #0E2F22;
    /* Deep Forest Green */
    --accent-color: #D4AF37;
    /* Metallic Gold */
    --text-color: #F0F0F0;
    /* Off-white/Mist */
    --overlay-color: rgba(14, 47, 34, 0.7);
    /* Green tinted overlay */
    --font-heading: 'Playfair Display', serif;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-heading);
    color: var(--text-color);
    background-color: var(--primary-color);
    overflow: hidden;
    /* Prevent scrolling for single screen feel */
    height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Navbar */
.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 0;
    z-index: 100;
    text-align: center;
}

.logo {
    font-size: 2rem;
    letter-spacing: 2px;
    color: var(--accent-color);
    text-transform: uppercase;
    font-weight: 700;
    border-bottom: 2px solid transparent;
}

.logo:hover {
    border-bottom: 2px solid var(--accent-color);
}

/* Hero Section */
.hero {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    background: url('https://images.unsplash.com/photo-1542385151-54603988a873?q=80&w=2674&auto=format&fit=crop') no-repeat center center/cover;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    padding: 0 20px;
    max-width: 800px;
}

.hero-content h1 {
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 20px;
    font-weight: 400;
    color: var(--text-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 1.5s ease-out;
}

.hero-content .highlight {
    color: var(--accent-color);
    font-style: italic;
}

.subtitle {
    font-size: 1.5rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    margin-bottom: 50px;
    color: var(--accent-color);
    animation: fadeIn 2s ease-out 0.5s backwards;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    font-size: 1.2rem;
    animation: fadeInUp 1.5s ease-out 1s backwards;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 10px 20px;
    border: 1px solid transparent;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    border-color: var(--accent-color);
    background-color: rgba(212, 175, 55, 0.1);
    transform: translateY(-2px);
}

.contact-item i {
    color: var(--accent-color);
    font-size: 1.5rem;
}



/* Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 3rem;
    }

    .subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
    }

    .logo {
        font-size: 1.5rem;
    }
}