/* ================================================
   ABOUT PAGE - HERO SECTION
   ================================================ */

#about-hero {
    height: calc(100vh - var(--header-height));
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    overflow: hidden;
}

#about-hero .hero-image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1; 
}

#about-hero .hero-image-background img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dark overlay for text contrast */
#about-hero .hero-image-background::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

#about-hero .container {
    position: relative;
    z-index: 2;
}

#about-hero .hero-content {
    text-align: left;
}

#about-hero .hero-content h1 {
    font-family: 'Cormorant', serif;
    font-size: clamp(4rem, 10vw, 10rem); /* Larger font size */
    font-weight: 400;
    color: var(--cream-color);
    line-height: 1.1;
    text-transform: uppercase;
    margin-bottom: 2.5rem;
}

#about-hero .contact-button {
    background-color: transparent;
    border: 2px solid var(--cream-color);
    color: var(--cream-color);
    padding: 1rem 2.5rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

#about-hero .contact-button:hover {
    background-color: var(--cream-color);
    color: var(--primary-color);
}


/* ================================================
   SCROLL ANIMATION STYLES
   ================================================ */

.animate-item {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

/* Staggered delay for the two items */
#about-hero .animate-item:nth-child(1) {
    transition-delay: 0.2s;
}

#about-hero .animate-item:nth-child(2) {
    transition-delay: 0.4s;
}

.animate-item.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ================================================
   ABOUT PAGE - INFO SECTION ("OUR STORY")
   ================================================ */

.info-section {
    padding: 0;
    background-color: var(--gold-color);
    color: var(--cream-color);
}

.info-split-container {
    display: flex;
    align-items: stretch;
    width: 100%;
}

/* New rule to reverse the order of columns */
.info-split-container.reverse {
    flex-direction: row-reverse;
}

.info-text-column {
    width: 50%;
    padding: 5rem 6%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.info-text-column .section-top-line {
    border: none;
    height: 1px;
    background-color: rgba(255, 250, 235, 0.7);
    width: 100%;
    max-width: 350px;
    margin: 0 0 3rem 0;
}

.info-text-column h2 {
    font-family: 'Cormorant', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 2.5rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.info-image-column {
    width: 50%;
    overflow: hidden;
}

.info-image-column img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.info-image-column:hover img {
    transform: scale(1.05);
}


/* Responsive adjustments */
@media (max-width: 900px) {
    .info-split-container,
    .info-split-container.reverse {
        flex-direction: column-reverse; 
    }

    .info-text-column,
    .info-image-column {
        width: 100%;
    }

    .info-image-column {
        height: 400px;
    }
}
/* ================================================
   ABOUT PAGE - PHILOSOPHY SECTION (CORRECTED)
   ================================================ */

.philosophy-section {
    padding: 6rem 0;
    background-color: var(--dark-brown); /* The dark brown from your design */
    color: var(--cream-color);
    text-align: center;
}

.philosophy-section .section-top-line {
    border: none;
    height: 1px;
    background-color: rgba(255, 250, 235, 0.4);
    width: 100%;
    max-width: 500px;
    margin: 0 auto 3rem auto;
}

.philosophy-section h2 {
    font-family: 'Cormorant', serif; /* Elegant serif font */
    font-size: clamp(2.5rem, 5vw, 4rem);
    text-transform: uppercase;
    letter-spacing: 4px; /* Wider letter spacing */
    font-weight: 300; /* Lighter font weight */
    color: var(--cream-color);
    margin-bottom: 4rem;
}

.philosophy-box {
    border: 1px solid rgba(255, 250, 235, 0.5);
    padding: 3rem 4rem;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    /* Adding the hover effect you liked from the other page */
    transition: background-color 0.3s, transform 0.3s;
}

.philosophy-box:hover {
    background-color: rgba(255, 255, 255, 0.05);
    transform: translateY(-5px);
}

.philosophy-box p {
    font-family: 'Poppins', sans-serif; /* Clean sans-serif for the body text */
    font-size: 1.1rem;
    font-weight: 400; /* Regular weight */
    line-height: 1.9; /* More spacing between lines */
    color: rgba(255, 250, 235, 0.9); /* Slightly softer white */
    margin-bottom: 2rem;
}

.philosophy-box p:last-child {
    margin-bottom: 0;
}
/* ================================================
   ABOUT PAGE - VISION & MISSION SECTION
   ================================================ */

/* We can reuse the .info-section styles from the previous section */

#vision-mission .info-text-column h2 {
    letter-spacing: 2px; /* Add letter spacing to match the design */
}

.vision-mission-text ul {
    list-style: none;
    padding-left: 0;
}

.vision-mission-text li {
    margin-bottom: 2rem;
}

.vision-mission-text li:last-child {
    margin-bottom: 0;
}

.vision-mission-text strong {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    padding-left: 2em;
    position: relative;
}


.vision-mission-text strong::before {
    content: '•';
    color: var(--cream-color);
    font-size: 1.5em;
    position: absolute;
    left: 0;
    top: -0.15em;
}

.vision-mission-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    padding-left: 2em; 
}