:root {
    /* Base colors */
    --color-bg-main: #151412;
    --color-bg-section: #181716;
    --color-bg-card: #1f1c19;

    /* Text */
    --color-text-primary: #f1f1f1;   
    --color-text-secondary: #f1eadf; 
    --color-text-muted: #b4afa3;     

    /* Brand accent */
    --color-accent: #b08d57;   
    --color-accent-hover: #8a6938;   /* Darker bronze for hover */
    --color-accent-soft: #3a3124;

    /* Borders */
    --color-border: #2f2c28;   
    --color-border-soft: #26231f;
}

.contact-hero {
    margin-bottom: 5rem;
}

.contact-hero-image {
    background-image: url("../Images/Home-Hero-Image-1.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    display: block;
    width: 100%;
    height: 90vh;
}

.contact-hero-text {
    text-align: center;
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    text-shadow: 0px 2px 15px rgba(0,0,0,0.4);
}

.contact-hero-text h1 {
    font-size: 2.5rem;
    letter-spacing: 0.07rem;
}

.contact-hero-text p {
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
}

@media screen and (max-width: 600px){
    .contact-hero-text {
        margin-top: 13rem;
    }
}

/* Google maps */

.contact-map {
    background-color: var(--color-bg-section);
    padding: 2rem;
    text-align: center;
    margin: 6rem auto;
}

.contact-map h2 {
    font-size: 2.5rem;
    padding-bottom: 1rem;
    letter-spacing: 0.06rem;
}

/* Map container */
.map-container {
    max-width: 1100px;
    margin: 0 auto;
    border-radius: 18px;
    overflow: hidden;

    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.18),
        0 6px 16px rgba(0, 0, 0, 0.12);

    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.map-container iframe {
    width: 100%;
    height: 700px;
    border: none;

    filter: grayscale(8%) contrast(105%) brightness(98%);
    transition: filter 0.4s ease;
}

/* Hover effect */
.map-container:hover {
    transform: translateY(-4px);
    box-shadow:
        0 28px 60px rgba(0, 0, 0, 0.22),
        0 10px 24px rgba(0, 0, 0, 0.14);
}

.map-container:hover iframe {
    filter: grayscale(0%) contrast(108%) brightness(102%);
}

@media (max-width: 768px) {
    .map-container iframe {
        height: 400px;
    }
}

.contact-extra-info {
    margin: 0 auto 2rem;
    background-color: var(--color-bg-card);
    max-width: fit-content;
    padding: 2rem;
    border-radius: 10px;
    transition: 0.5s ease;
    box-shadow: 0px 2px 20px rgba(0,0,0,0.3);
}

.contact-extra-info:hover {
    transform: translateY(-10px);
    background-color: #2b2521;
}

/* Mobile portrait / very small screens */
@media (max-width: 480px) {
    .contact-hero-image {
        height: 60vh;
    }

    .contact-hero-text h1 {
        font-size: 1.6rem;
    }
    .contact-hero-text p {
        font-size: 0.95rem;
    }

    .contact-map h2 {
        font-size: 1.8rem;
    }

    .map-container iframe {
        height: 150px;
    }

    .contact-extra-info {
        max-width: 90%;
        padding: 0.4rem;
        font-size: 0.8rem;
    }
}
