﻿:root {
    --dark-green: #1a302a;
    --gold: #c5a059;
    --cream: #f5e6be;
    --white: #ffffff;
}

body {
    margin: 0;
    padding: 0;
    font-family: 'Roboto', sans-serif;
    background-color: var(--dark-green);
    color: var(--cream);
    line-height: 1.6;
}

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

/* Header */
header {
    padding: 30px 0;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
}

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

.logo-area {
    text-decoration: none;
    color: inherit;
}

.logo-area:visited {
    color: inherit;
}

.logo-area h1 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin: 0;
    letter-spacing: 2px;
}

.subtitle {
    margin: 0;
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: var(--cream);
}

nav {
    display: flex;
    justify-content: center;
    gap: 10px;
}

/* Hamburger Menu Toggle (Hidden by default) */
#menu-toggle {
    display: none;
}

.menu-icon {
    display: none;
    cursor: pointer;
    padding: 10px;
    z-index: 100;
}

.menu-icon span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--gold);
    margin: 5px 0;
    transition: 0.3s;
}

@media (max-width: 992px) {
    header .container {
        position: relative;
    }

    .menu-icon {
        display: block;
    }

    nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--dark-green);
        padding: 20px;
        border-bottom: 1px solid var(--gold);
        z-index: 99;
    }

    #menu-toggle:checked ~ nav {
        display: flex;
    }

    .cta-phone {
        text-align: center;
        width: 100%;
        box-sizing: border-box;
    }
}

.cta-phone {
    color: var(--cream);
    text-decoration: none;
    font-weight: bold;
    border: 1px solid var(--gold);
    padding: 8px 15px;
    border-radius: 4px;
    transition: 0.3s;
    font-size: 0.9rem;
    white-space: nowrap;
}

.cta-phone:hover {
    background-color: var(--gold);
    color: var(--dark-green);
}

/* Hero Section */
.hero {
    padding: 100px 20px;
    text-align: center;
    background: linear-gradient(rgba(26, 48, 42, 0.8), rgba(26, 48, 42, 0.8)), url('./img/raton.jpg') no-repeat center/cover;
}

.hero h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    margin-bottom: 10px;
    color: var(--gold);
}

.hero h3 {
    font-style: italic;
    font-weight: 300;
    margin-bottom: 30px;
}

.tagline {
    font-size: 1.2rem;
    border-top: 1px solid var(--gold);
    border-bottom: 1px solid var(--gold);
    display: inline-block;
    padding: 10px 40px;
    margin-bottom: 40px;
}

.features {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.btn {
    background-color: var(--gold);
    color: var(--dark-green);
    padding: 15px 40px;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    border-radius: 4px;
}

/* Services */
.services {
    padding: 80px 0;
    background-color: rgba(255, 255, 255, 0.05);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--dark-green);
    padding: 30px;
    border: 1px solid var(--gold);
    text-align: center;
}

.service-card h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 0;
}

/* Contact Section */
.contact-info {
    padding: 80px 0;
    text-align: center;
}

.contact-box {
    margin-top: 40px;
}

.name {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.big-phone {
    font-size: 2.5rem;
    color: var(--gold);
    text-decoration: none;
    font-weight: bold;
}

footer {
    text-align: center;
    padding: 40px 0;
    font-size: 0.8rem;
    opacity: 0.6;
}

@media (max-width: 992px) {
    .hero h2 { font-size: 2rem; }
    .big-phone { font-size: 1.8rem; }
    header .container { flex-direction: row; justify-content: space-between; gap: 20px; }
}