/* =============================================
   about.css - Hotel Panchvati About Page Styles
   Based on provided :root variables
   Updated: Removed CTA section styles
   ============================================= */

/* --- Banner Section (30% to 40% vh - using 40vh) --- */
.about-banner {
    position: relative;
    height: 40vh;
    min-height: 300px;
    max-height: 450px;
    background: linear-gradient(135deg, #1a1408 0%, #2c2416 100%);
    background-image: url('../img/banner/4.jpeg');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(44, 36, 22, 0.55);
    backdrop-filter: brightness(0.85);
}

.banner-container {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 0 20px;
}

.banner-title {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 3.8rem;
    font-weight: 700;
    color: var(--white, #FFFFFF);
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
}

.banner-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 16px 0;
}

.divider-line {
    width: 60px;
    height: 2px;
    background: var(--accent, #D4AF37);
}

.banner-divider i {
    font-size: 1.8rem;
    color: var(--accent, #D4AF37);
}

.banner-subtitle {
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 1.2rem;
    color: var(--white, #FFFFFF);
    font-weight: 400;
    letter-spacing: 1px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.3);
}

/* --- About Us Content Section --- */
.about-section {
    padding: 80px 0;
    background-color: var(--bg-cream, #FFFDF7);
}

.container {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 12px;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary, #8B6914);
    background: var(--bg-soft, #FDF6EC);
    padding: 6px 16px;
    border-radius: 40px;
    margin-bottom: 20px;
    font-weight: 500;
}

.section-title {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 2.8rem;
    font-weight: 600;
    color: var(--text-dark, #2C2416);
    margin-bottom: 24px;
    position: relative;
}

.about-description {
    color: var(--text-muted, #7A6A55);
    margin-bottom: 20px;
    font-size: 1rem;
    line-height: 1.8;
}

.about-signature {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 1.1rem;
    color: var(--primary, #8B6914);
    font-style: italic;
    border-top: 1px solid var(--border-light, #E8D9C0);
    padding-top: 24px;
}

.about-signature i {
    font-size: 1.5rem;
    color: var(--accent, #D4AF37);
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg, 24px);
    overflow: hidden;
    box-shadow: var(--shadow-card, 0 8px 32px rgba(139, 105, 20, 0.12));
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition, all 0.35s cubic-bezier(0.4, 0, 0.2, 1));
}

.about-image:hover img {
    transform: scale(1.02);
}

.image-floating-icon {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: var(--white, #FFFFFF);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-soft, 0 4px 24px rgba(139, 105, 20, 0.10));
    color: var(--primary, #8B6914);
    font-size: 1.5rem;
}

/* --- Mission, Vision & Values Section --- */
.mission-vision-values {
    padding: 80px 0;
    background-color: var(--bg-section, #FFF8F0);
}

.section-header.center {
    text-align: center;
    margin-bottom: 56px;
}

.section-tag-light {
    display: inline-block;
    font-family: var(--font-body, 'Jost', sans-serif);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-light, #A89070);
    background: transparent;
    margin-bottom: 12px;
}

.section-header h2 {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 2.6rem;
    font-weight: 600;
    color: var(--text-dark, #2C2416);
    margin-bottom: 12px;
}

.header-sparkle {
    color: var(--accent, #D4AF37);
    font-size: 0.9rem;
    letter-spacing: 4px;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.mv-card {
    background: var(--white, #FFFFFF);
    padding: 25px 20px;
    border-radius: var(--radius-lg, 24px);
    text-align: center;
    transition: var(--transition, all 0.35s cubic-bezier(0.4, 0, 0.2, 1));
    box-shadow: var(--shadow-soft, 0 4px 24px rgba(139, 105, 20, 0.10));
    border: 1px solid var(--border-light, #E8D9C0);
}

.mv-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card, 0 8px 32px rgba(139, 105, 20, 0.12));
    border-color: var(--primary-light, #C4972A);
}

.mv-icon {
    width: 50px;
    height: 50px;
    background: var(--bg-soft, #FDF6EC);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
    color: var(--primary, #8B6914);
    font-size: 2rem;
    transition: var(--transition, all 0.35s cubic-bezier(0.4, 0, 0.2, 1));
}

.mv-card:hover .mv-icon {
    background: var(--primary, #8B6914);
    color: var(--white, #FFFFFF);
}

.mv-card h3 {
    font-family: var(--font-display, 'Cormorant Garamond', serif);
    font-size: 1.6rem;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark, #2C2416);
}

.mv-card p {
    color: var(--text-muted, #7A6A55);
    font-size: 0.95rem;
    line-height: 1.7;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.values-list li {
    padding: 10px 0;
    color: var(--text-muted, #7A6A55);
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    border-bottom: 1px solid var(--border-light, #E8D9C0);
}

.values-list li:last-child {
    border-bottom: none;
}

.values-list li i {
    color: var(--primary, #8B6914);
    width: 24px;
    font-size: 1rem;
}

/* --- Footer Section --- */
.about-footer {
    background-color: var(--text-dark, #2C2416);
    padding: 24px 0;
    text-align: center;
    border-top: 1px solid var(--border-light, #E8D9C0);
}

.footer-inner p {
    color: var(--text-light, #A89070);
    font-size: 0.85rem;
    margin: 0;
    letter-spacing: 0.5px;
}

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .mv-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .banner-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .about-banner {
        height: 30vh;
        min-height: 280px;
    }
    
    .banner-title {
        font-size: 2.2rem;
    }
    
    .banner-subtitle {
        font-size: 0.95rem;
    }
    
    .mv-grid {
        grid-template-columns: 1fr;
    }
    
    .about-section, 
    .mission-vision-values {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .banner-title {
        font-size: 1.8rem;
    }
    
    .divider-line {
        width: 35px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .mv-card {
        padding: 30px 20px;
    }
    
    .container {
        padding: 0 16px;
    }
    
    .about-signature {
        font-size: 0.9rem;
        flex-wrap: wrap;
        justify-content: center;
        text-align: center;
    }
    
    .values-list li {
        font-size: 0.85rem;
    }
}

/* --- Animation & Hover Effects --- */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-section,
.mission-vision-values {
    animation: fadeInUp 0.8s ease-out;
}

.mv-card {
    animation: fadeInUp 0.6s ease-out;
    animation-fill-mode: both;
}

.mv-card:nth-child(1) {
    animation-delay: 0.1s;
}

.mv-card:nth-child(2) {
    animation-delay: 0.2s;
}

.mv-card:nth-child(3) {
    animation-delay: 0.3s;
}

/* --- Utility Classes --- */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 24px;
}

.mb-4 {
    margin-bottom: 24px;
}