﻿:root {
    --primary-color: var(--button-color-two, #B0A096);
    --accent-color: var(--button-color, #F9794C);
    --text-dark: #160d0c;
    --text-light: #f8f8f8;
    --transition-speed: 0.3s;
    --section-spacing: clamp(4rem, 8vw, 6rem);
    --overlay-dark: rgba(0, 0, 0, 0.4);
    --overlay-light: rgba(255, 255, 255, 0.9);
}

.hero-banner {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 500px;
    max-height: 900px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    object-fit: cover;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-dark);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    padding: 2rem;
    width: 100%;
    max-width: 1200px;
}

.header-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-family: "Playfair Display", serif;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
}

.header-subtitle {
    font-size: clamp(0.9rem, 1.5vw, 1.5rem);
    font-family: "Josefin Sans", sans-serif;
    font-weight: 400;
    letter-spacing: 2px;
    line-height: 1.4;
}

.intro-section {
    padding: var(--section-spacing) 0;
    background-color: #fff;
}

.body-content-title {
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(1.4rem, 2.5vw, 2.2rem);
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 2rem;
    text-align: center;
}

.body-content-text {
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    font-weight: 400;
    line-height: 1.7;
    color: #444;
    margin-bottom: 1.5rem;
    text-align: center;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.section-alt {
    background-color: #f9f9f9;
}

.circular-content-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: clamp(2rem, 4vw, 4rem);
}

.circular-image-container {
    flex: 0 0 auto;
    width: 45%;
    max-width: 500px;
    position: relative;
}

.circular-image {
    width: 100%;
    height: auto;
    aspect-ratio: 1;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform var(--transition-speed) ease;
}

    .circular-image:hover {
        transform: scale(1.02);
    }

.circular-image-bg {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    border-radius: 50%;
    opacity: 0.1;
    z-index: -1;
}

.text-content {
    flex: 1;
    min-width: 300px;
}

.content-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 2.5vw, 2.5rem);
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.content-description {
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(0.95rem, 1.1vw, 1.1rem);
    line-height: 1.7;
    color: #555;
    margin-bottom: 1.5rem;
    max-width: 58%;
}

.content-highlight {
    color: var(--accent-color);
    font-weight: 600;
}

.bottom-image {
    position: relative;
    width: 100%;
    height: 90vh;
    min-height: 500px;
    max-height: 900px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: clamp(1rem, 2vw, 2rem);
}

    .bottom-image::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, var(--overlay-light) 0%, rgba(255,255,255,0.7) 30%, rgba(255,255,255,0) 100%);
        z-index: 1;
    }

.bottom-content {
    position: relative;
    z-index: 2;
    color: var(--text-dark);
    padding: clamp(2rem, 5vw, 5rem);
    width: 100%;
    max-width: min(50%, 600px);
    margin-left: 5%;
}

.bottom-content-title {
    font-family: "Playfair Display", serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
}

.bottom-content-subtitle {
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(0.8rem, 1vw, 0.9rem);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-top: 1rem;
    color: var(--accent-color);
}

.bottom-content-text {
    font-family: "Josefin Sans", sans-serif;
    font-size: clamp(0.9rem, 1.1vw, 1rem);
    font-weight: 400;
    line-height: 1.6;
    margin-top: 2rem;
}

.btn-primary {
    background-color: var(--button-color, #F9794C);
    border: none;
    margin-top: 1rem;
    padding: 0.6rem 1.5rem;
    color: white;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color var(--transition-speed) ease;
    display: inline-block;
    text-decoration: none;
}

    .btn-primary:hover {
        background-color: #F9794C;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.scroll-animate {
    will-change: transform, opacity;
    opacity: 0;
    transition: all 0.6s ease-out;
}

    .scroll-animate.scroll-fade {
        opacity: 0;
    }

    .scroll-animate.scroll-up {
        transform: translateY(30px);
    }

    .scroll-animate.scroll-down {
        transform: translateY(-30px);
    }

    .scroll-animate.animate-in {
        opacity: 1;
        transform: translate(0);
    }

@media (max-width: 1200px) {
    .circular-content-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-banner {
        height: 70vh;
        min-height: 400px;
    }

    .circular-content-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .circular-image-container {
        width: 70%;
        margin-bottom: 2rem;
    }

    .text-content {
        min-width: auto;
        width: 100%;
    }

    .content-description {
        max-width: 100%;
    }

    .section-alt .circular-content-wrapper {
        flex-direction: column-reverse;
    }

    .bottom-content {
        max-width: 80%;
        margin-left: 0;
        padding: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-banner,
    .bottom-image {
        height: 60vh;
        min-height: 350px;
    }

    .header-subtitle {
        letter-spacing: 1px;
    }

    .circular-image-container {
        width: 85%;
    }

    .content-title {
        font-size: 1.6rem;
    }

    .content-description {
        font-size: 0.95rem;
        text-align: left;
    }

    .bottom-content {
        max-width: 90%;
        padding: 2rem;
        text-align: center;
        margin: 0 auto;
    }

    .bottom-image::before {
        background: linear-gradient(rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 50%, rgba(255,255,255,0) 100%);
    }
}

@media (max-width: 576px) {
    .hero-banner,
    .bottom-image {
        height: 50vh;
        min-height: 300px;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .header-title {
        font-size: 1.8rem;
    }

    .header-subtitle {
        font-size: 0.9rem;
    }

    .intro-section {
        padding: 3rem 0;
    }

    .circular-image-container {
        width: 100%;
        max-width: 300px;
        margin: 0 auto 2rem;
    }

    .content-title {
        font-size: 1.4rem;
    }

    .content-description {
        font-size: 0.9rem;
    }
}

@media (max-width: 400px) {
    .hero-banner,
    .bottom-image {
        height: 45vh;
        min-height: 250px;
    }

    .header-title {
        font-size: 1.6rem;
    }

    .circular-image-container {
        max-width: 250px;
    }

    .content-title {
        font-size: 1.3rem;
    }
}

.text-center {
    text-align: center;
}

.text-start {
    text-align: left;
}

.my-5 {
    margin-top: clamp(2rem, 4vw, 3rem);
    margin-bottom: clamp(2rem, 4vw, 3rem);
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.container-fluid.m-0.p-0 {
    margin: 0;
    padding: 0;
}
