@font-face {
    font-family: 'arkipelagoregular';
    src: url('../fonts/arkipelago_1.003-webfont.woff2') format('woff2'),
    url('../fonts/arkipelago_1.003-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #faf9f7;
}

/* Hero section */
.hero {
    position: relative;
    height: calc(100vh - 10px); /* trừ chiều cao của header (top-bar + navbar) */
    background: url('../images/about/hero-background.jpg?v=2') center/cover no-repeat;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: -90px; /* trừ chiều cao header 1 hàng — header trong suốt đè lên hình hero (transparent header) */
}

/* Optional overlay for better text contrast */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    /*background: rgba(0, 0, 0, 0.45);*/
    z-index: 1;
}

.hero h1 {
    position: relative;
    z-index: 2;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
}

.hero .display-wrapper{
    z-index: 12;
}

.hero .display-wrapper .display-3 {
    border: none;
    transition: background-color 0.3s ease;
}

.hero .display-wrapper .lead {
    border: none;
    color: var(--text-dark);
    font-size: 14px;
}

/*...........End header...............*/

/*...........Start quote-section...............*/
.quote-section {
    background-color: #fdf9f3;
    position: relative;
    overflow: hidden;
    color: #000;
}

.quote-section blockquote {
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
    font-weight: 600;
    text-transform: uppercase;
}

.divider {
    width: 50px;
    height: 1px;
    background-color: #bca47a;
}

.signature {
    font-size: 1.5rem;
}

.deco-left,
.deco-right {
    position: absolute;
    opacity: 0.1;
    z-index: 0;
}

.deco-left {
    top: 30%;
    left: 10%;
    width: 120px;
    transform: rotate(-5deg);
}

.deco-right {
    top: 35%;
    right: 10%;
    width: 130px;
    transform: rotate(10deg);
}

@media (max-width: 768px) {
    .quote-section blockquote {
        font-size: 1rem;
    }
    .deco-left,
    .deco-right {
        width: 80px;
        opacity: 0.08;
    }
}
/*...........End quote-section...............*/

/*...........Start about-section...............*/
.about-section {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1c1a17;
    padding: 30px;
}

.about-img {
    position: relative;
}

.about-img img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
    height: 500px;
    object-fit: cover;
}

.about-img h2 {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
}

.about-text {
    padding-left: 60px;
    max-width: 600px;
}

.about-text h3 {
    color: var(--text-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 20px;
}

.about-text p {
    color: #ccc;
    line-height: 1.7;
    font-size: 0.95rem;
}

@media (max-width: 992px) {
    .about-section {
        flex-direction: column;
    }
    .about-text {
        padding-left: 0;
        margin-top: 40px;
        text-align: center;
    }
    .about-img h2 {
        font-size: 2rem;
    }
}
/*...........End about-section...............*/

/*...........Start our-passion..............*/
.our-passion {
    background-color: #000;
    color: #fff;
}

.our-passion h3 {
    letter-spacing: 2px;
}

.image-card {
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    margin-top: 20px;
}

.image-card.image1{
    margin-top: 50px;
}

.image-card img {
    transition: transform 0.6s ease;
    width: 400px;
    height: 500px;
    object-fit: cover;
}

.image-card:hover img {
    transform: scale(1.1);
}

.image-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.1);
}

@media (max-width: 768px) {
    .our-passion p {
        font-size: 0.9rem;
    }
}
/*...........End our-passion..............*/

/*...........Start philosophy-section..............*/
.philosophy-section {
    position: relative;
    overflow: hidden;
}

.philosophy-quote {
    text-align: right;
    padding-right: 50px;
    position: relative;
}

.philosophy-quote h2 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 1.3;
    max-width: 300px;
    margin-left: auto;
}

.philosophy-quote small {
    display: block;
    letter-spacing: 3px;
    margin-top: 15px;
    font-size: 0.75rem;
    color: #555;
}

.philosophy-image {
    position: relative;
}

.philosophy-image img {
    width: 100%;
    border-radius: 0;
    object-fit: cover;
}

.philosophy-overlay {
    background-color: #000;
    color: var(--text-primary);
    position: absolute;
    top: 50%;
    left: 60%;
    transform: translate(-10%, -50%);
    padding: 30px 40px;
    max-width: 450px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    width: max-content;
}

.philosophy-overlay h3 {
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 20px;
    line-height: 1.4;
}

.philosophy-overlay p {
    font-size: 0.9rem;
    color: #ccc;
    margin-bottom: 20px;
}

.philosophy-overlay .phone {
    border: 1px solid var(--text-primary);
    padding: 8px 20px;
    display: inline-block;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: var(--text-primary);
}

/* Responsive */
@media (max-width: 992px) {
    .hero{
        margin-top: unset;
    }

    .philosophy-section {
        text-align: center;
    }
    .philosophy-section .philosophy-section-row{
        flex-direction: column !important;
    }
    .philosophy-quote {
        text-align: center;
        padding-right: 0;
        margin-bottom: 40px;
    }
    .philosophy-overlay {
        position: static;
        transform: none;
        margin-top: 30px;
    }
}
/*...........End philosophy-section..............*/
