/* Base Styles */
* {
    box-sizing: border-box;
}

body {

    margin: 0;
    padding: 0;
}

/* ===========================
   HERO SECTION
=========================== */
.hero {
    position: relative;
    width: 100%;
    height: 80vh;
    background: url('/abbe/About-us/img/Untitleddesign.png') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    /* text-align: center; */
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    color: black;
    max-width: 900px;
    padding: 0 2rem;
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    letter-spacing: 2px;
    line-height: 1.2;
    font-family: "Abril Fatface", serif;
}

.hero-subtitle {
    font-size: 1.18rem;
    font-family: "Playfair Display", serif;
    margin-top: 1.5rem;
}

.hero-location {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 500;
}

/* Main Layout */
.big-container {
    display: flex;
    justify-content: center;
    padding: 0 50px;
    overflow: hidden;
}

.container {
    display: flex;
    flex-direction: row;
    /* side-by-side layout */
    align-items: center;
    /* vertical centering */
    justify-content: center;
    gap: 60px;
    max-width: 1320px;
    width: 100%;
}

/* Image Section */
.img-one {
    flex: 1;
    display: flex;
    justify-content: flex-start;
    /* keep image aligned to center-left */
    align-items: center;
}

.img-one img {
    width: auto;
    height: 100vh;
    /* full screen height */
    max-height: 100vh;
    object-fit: cover;
    /* ensures it fills the whole height */
    margin-left: -100px;
    /* Optional to push image outside a bit */
}

/* Text Section */
.content-one {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: left;
}

.section-head {
    font-size: 45px;
    line-height: 50px;
    font-weight: 700;
    margin-bottom: 15px;
}

.section-text {
    color: rgb(147, 147, 147);
    font-size: 18px;
    line-height: 27px;
    max-width: 750px;
    margin-top: 20px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .container {
        flex-direction: column-reverse;
        text-align: center;
        gap: 30px;
    }

    .content-one {
        align-items: center;
        text-align: center;
    }

    .img-one {
        max-height: 300px;
        justify-content: center;
    }

    .img-one img {
        width: 80%;
        height: auto;
        margin-left: 0;
        transform: rotateZ(-90deg);
        object-fit: contain;
    }
}

@media (max-width: 768px) {
    .section-head {
        font-size: 38px;
        line-height: 45px;
    }

    .section-text {
        font-size: 17px;
    }
}

@media (max-width: 500px) {
    .section-head {
        font-size: 28px;
        line-height: 35px;
    }

    .section-text {
        font-size: 16px;
        line-height: 24px;
    }

    .big-container {
        padding: 0 20px;
    }
}

/* ===========================
   HEADER + NAVIGATION
=========================== */
header {
    top: 0;
    left: 0;
    width: 100%;
    z-index: 10;
    background: transparent;
    padding: 2rem 5%;
}




.logo {
    position: absolute;
    top: -2rem;
    left: -2.5rem;
    width: 300px;
    height: auto;
    z-index: 4;
    filter: drop-shadow(0 0 6px rgba(0, 0, 0, 0.5));
}

.nav {
    list-style: none;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.nav li {
    text-transform: uppercase;
}

.nav a {
    position: relative;
    color: black;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0%;
    height: 2px;
    background-color: black;
    transition: width 0.4s ease;
}

.nav a:hover::after {
    width: 100%;
}


header h1 {
    color: black;
    font-family: 'Playfair Display', serif;
    /* Elegant and timeless */
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0 1.5rem;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideIn 1.2s ease forwards 0.6s;
}

/* Subtle underline line that fades in after the text */
header h1::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -8px;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.9);
    transition: width 0.6s ease 1.2s;
}

header h1.appear::after {
    width: 60%;
}

/* Animation for the text entrance */
@keyframes fadeSlideIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.container {
    max-width: 1170px;
    margin: auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

ul {
    list-style: none;
}

/* -------------------------------------------------
   FOOTER — Luxury Side-by-Side Layout
------------------------------------------------- */
footer.footer {
    background-color: #fff;
    border-top: 2px solid #000;
    padding: 80px 0 50px 0;
    width: 100%;
    position: relative;
    font-family: "Work Sans", sans-serif;
    color: #111;
}

/* Container: limits width and centers everything */
footer .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Row layout: side-by-side alignment */
.row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: nowrap;
    /* Keep columns in one row until smaller screens */
    gap: 3rem;
}

/* Columns */
.footer-col {
    flex: 1;
    min-width: 220px;
}

.footer-col h4 {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    color: #000;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 25px;
    font-weight: 600;
    position: relative;
}

/* Elegant underline under each title */
.footer-col h4::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    background-color: #000;
    height: 2px;
    width: 40px;
}

/* Footer list links */
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    font-size: 0.95rem;
    color: #444;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-col ul li a:hover {
    color: #000;
    padding-left: 5px;
}

/* Social links */
.footer-col .social-links {
    margin-top: 15px;
}

.footer-col .social-links a {
    display: inline-block;
    height: 38px;
    width: 38px;
    border: 1px solid #111;
    text-align: center;
    line-height: 38px;
    border-radius: 50%;
    color: #111;
    margin: 0 8px 8px 0;
    transition: all 0.4s ease;
}

.footer-col .social-links a:hover {
    background-color: #111;
    color: #fff;
}

/* Contact section */
.footer-col h2 {
    font-family: "Playfair Display", serif;
    font-size: 1.1rem;
    margin-top: 20px;
    margin-bottom: 8px;
    color: #000;
    font-weight: 500;
}

.footer-col p {
    font-size: 0.95rem;
    color: #333;
    letter-spacing: 0.2px;
}

/* Footer bottom line */
.footer-bottom {
    text-align: center;
    margin-top: 50px;
    font-size: 0.85rem;
    color: #777;
    border-top: 1px solid #e3e3e3;
    padding-top: 20px;
}

/* -------------------------------------------------
   RESPONSIVE DESIGN
------------------------------------------------- */
@media (max-width: 991px) {
    .row {
        flex-wrap: wrap;
        gap: 2rem;
    }

    .footer-col {
        flex: 1 1 45%;
        min-width: 250px;
    }
}

@media (max-width: 600px) {
    .footer-col {
        flex: 1 1 100%;
    }

    footer .container {
        padding: 0 20px;
    }
}

.contact-link {
    color: var(--accent);
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
    transition: text-underline-offset 0.25s ease;
}

.contact-link:hover {
    text-underline-offset: 6px;
}