/* About Page Specific Styles */

.about-page {
    background: linear-gradient(180deg, #FFFBE3 1.44%, #FFEEE9 70.67%);
    min-height: 100vh;
}

.about-main {
    max-width: 100%; /* Ensure it fits within the viewport */
    margin: 0 auto;
    padding: 180px 20px 40px;
}

/* Hero Logo */
.about-hero {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 60px;
}

.about-logo {
    width: 300px;
    height: auto;
    fill: var(--color-brown);
}

/* About Sections */
.about-section {
    max-width: 100%; /* Ensure sections fit within the viewport */
    margin: 0 auto 60px;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

.icon-circle {
    width: 300px;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-white);
    border-radius: 50%;
    border: 8px solid var(--color-orange);
    box-shadow: 1px 1px 30px 0 rgba(0, 0, 0, 0.15);
    flex-shrink: 0;
}

.icon-circle svg {
    max-width: 180px;
    max-height: 180px;
}

.about-text {
    max-width: 1000px;
    text-align: center;
    white-space: normal;
}

.about-text p {
    font-family: var(--font-sauce);
    font-size: clamp(18px, 2.5vw, 24px);
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-black);
    margin-bottom: 20px;
    white-space: normal;
}

.section-heading {
    font-family: var(--font-sauce);
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--color-black);
    text-align: center;
    margin-bottom: 30px;
}

/* Values Text */
.values-text h3 {
    font-family: var(--font-sauce);
    font-size: clamp(22px, 3vw, 30px);
    font-weight: 700;
    color: var(--color-black);
    margin: 30px 0 10px;
}

.values-text p {
    margin-bottom: 20px;
}

/* CTA Section */
.about-cta {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 0;
}

.btn-cta {
    display: inline-flex;
    padding: 20px 40px;
    background: var(--color-orange);
    color: var(--color-white);
    font-family: var(--font-sauce);
    font-size: clamp(20px, 3vw, 32px);
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    min-width: auto;
    justify-content: center;
}

.btn-cta:hover {
    opacity: 0.9;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(225, 92, 49, 0.3);
}

/* Social Widget */
.social-widget {
    position: fixed;
    right: 20px;
    bottom: 100px;
    z-index: 100;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.social-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.social-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--color-pale-red);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 1px 1px 20px -6px rgba(0, 0, 0, 0.25);
    opacity: 0.6;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-btn:hover {
    opacity: 1;
    transform: scale(1.1);
}

.social-btn svg {
    width: 20px;
    height: 20px;
}

.chat-bubble {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--color-pale-red);
    border-radius: 50px;
    padding: 15px 20px;
    box-shadow: 1px 1px 20px -6px rgba(0, 0, 0, 0.25);
    opacity: 0.75;
    transition: all 0.3s ease;
    cursor: pointer;
}

.chat-bubble:hover {
    opacity: 1;
    transform: scale(1.05);
}

.chat-bubble span {
    font-family: var(--font-sauce);
    font-size: 20px;
    font-weight: 500;
    color: var(--color-white);
}

.chat-bubble svg {
    width: 40px;
    height: 40px;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .about-logo {
        width: 200px;
    }

    .icon-circle {
        width: 200px;
        height: 200px;
        border-width: 4px;
    }

    .icon-circle svg {
        max-width: 120px;
        max-height: 120px;
    }

    .about-section {
        gap: 30px;
        padding: 30px 20px;
        margin-bottom: 40px;
    }

    .social-widget {
        right: 10px;
        bottom: 80px;
    }

    .social-btn {
        width: 40px;
        height: 40px;
    }

    .chat-bubble {
        padding: 10px 15px;
    }

    .chat-bubble span {
        font-size: 16px;
    }

    .chat-bubble svg {
        width: 35px;
        height: 35px;
    }

    .btn-cta {
        min-width: 250px;
        padding: 16px 32px;
    }

    .about-section {
        padding: 20px;
    }

    .icon-circle {
        width: 150px;
        height: 150px;
    }

    .btn-cta {
        padding: 12px 24px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .about-main {
        padding: 60px 15px 30px;
    }

    .about-logo {
        width: 150px;
    }

    .icon-circle {
        width: 150px;
        height: 150px;
    }

    .icon-circle svg {
        max-width: 90px;
        max-height: 90px;
    }

    .social-widget {
        display: none;
    }

    .about-text p {
        font-size: 18px;
    }

    .btn-cta {
        padding: 10px 20px;
        font-size: 16px;
    }
}

/* Animation for scroll-in effects */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-section {
    animation: fadeInUp 0.6s ease-out;
}

/* Navbar override for about page */
.about-page .navbar {
    background: rgba(212, 212, 212, 0.35);
}

.about-page .navbar-logo svg {
    color: var(--color-brown);
}

.about-page .navbar-menu a {
    color: var(--color-brown);
}

.about-page .navbar-menu a:hover {
    color: var(--color-orange);
}

.nav-link-black {
    color: var(--color-black);
}

.nav-link-orange {
    color: var(--color-orange);
}
