/* ELVA About Page - CSS */


/* Main Colors - Orange & Black Theme */

:root {
    --primary-orange: #FF6B35;
    --light-orange: #FF8C42;
    --dark-orange: #E55934;
    --black: #1A1A1A;
    --dark-gray: #2D2D2D;
    --light-gray: #F5F5F5;
    --white: #FFFFFF;
    --orange-gradient: linear-gradient(135deg, #FF6B35 0%, #FF8C42 50%, #E55934 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--white);
    color: var(--black);
    line-height: 1.6;
    overflow-x: hidden;
}


/* Gradient Background */

.gradient-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #fff 0%, #fff5f0 50%, #ffebe0 100%);
    z-index: -2;
}


/* Floating Elements */

.floating-elements {
    position: fixed;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

.float-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.1;
    animation: float-bubble 20s infinite ease-in-out;
}

.circle-1 {
    width: 300px;
    height: 300px;
    background: var(--primary-orange);
    top: 10%;
    left: 10%;
}

.circle-2 {
    width: 200px;
    height: 200px;
    background: var(--dark-orange);
    top: 60%;
    right: 10%;
    animation-delay: 5s;
}

.circle-3 {
    width: 250px;
    height: 250px;
    background: var(--light-orange);
    bottom: 10%;
    left: 50%;
    animation-delay: 10s;
}

.circle-4 {
    width: 150px;
    height: 150px;
    background: var(--primary-orange);
    top: 30%;
    right: 30%;
    animation-delay: 15s;
}

.circle-5 {
    width: 180px;
    height: 180px;
    background: var(--light-orange);
    bottom: 40%;
    left: 20%;
    animation-delay: 8s;
}

@keyframes float-bubble {
    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.05);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.95);
    }
}


/* Navigation */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    padding: 1rem 3rem;
    z-index: 1000;
    transition: all 0.3s ease;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-img {
    height: 50px;
    width: auto;
}

.nav-menu {
    display: flex;
    align-items: center;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--black);
    font-weight: 500;
    font-size: 16px;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-orange);
    transition: width 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-orange);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    cursor: pointer;
}

.mobile-toggle span {
    width: 25px;
    height: 2px;
    background: var(--black);
    transition: all 0.3s ease;
}


/* Main Content */

.main-content {
    padding-top: 80px;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}


/* Hero Section */

.hero-section {
    padding: 6rem 0;
    background: var(--orange-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    position: relative;
    z-index: 3;
}

.hero-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 2rem;
    text-transform: uppercase;
}

.hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(48px, 6vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-title .accent {
    color: var(--white);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.hero-description {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.flavors-image {
    width: 100%;
    max-width: 500px;
    height: auto;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

@keyframes float {
    0%,
    100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-15px);
    }
}


/* Section Headers */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    color: var(--black);
    margin-bottom: 1rem;
}

.section-title .accent {
    color: var(--primary-orange);
}

.section-subtitle {
    font-size: 18px;
    color: var(--dark-gray);
}


/* Promise Section */

.promise-section {
    padding: 6rem 0;
    background: var(--white);
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.promise-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
}

.promise-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--orange-gradient);
}

.promise-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-orange);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.promise-icon {
    width: 80px;
    height: 80px;
    background: var(--orange-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2rem;
    transition: all 0.3s ease;
}

.promise-card:hover .promise-icon {
    transform: scale(1.1);
}

.promise-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--black);
}

.promise-card p {
    color: var(--dark-gray);
    line-height: 1.7;
    font-size: 15px;
}


/* Story Section */

.story-section {
    padding: 6rem 0;
    background: var(--light-gray);
    position: relative;
    overflow: hidden;
}

.story-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M1200,0H0V53.94c23.86,10.54,50.86,19.3,78.24,17.32,31.62-2.29,62.64-15.42,95.35-17.24,41.74-2.32,83.69,7.75,125.77,15.46,42.07,7.7,84.77,12.82,128.67,6.77,44.8-6.17,87.4-21.9,132.32-27.42C620.3,42.41,680.18,49.3,740.41,55.48c61.09,6.27,122.74,11.85,184.88,6.66C982.35,57.93,1039.23,40.57,1096,25.56c28.13-7.44,56.76-14.11,85.73-16.67C1191.7,7.91,1196.15,3.86,1200,0Z' fill='%23ffffff'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
    align-items: start;
    position: relative;
    z-index: 3;
}

.story-paragraph {
    font-size: 18px;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.story-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-orange);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 14px;
    color: var(--dark-gray);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.story-visual {
    position: relative;
}

.visual-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary-orange);
}

.visual-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2rem;
    text-align: center;
}

.values-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.value-item i {
    color: var(--primary-orange);
    font-size: 1.2rem;
    min-width: 20px;
}

.value-item span {
    font-weight: 500;
    color: var(--black);
}


/* Showcase Section */

.showcase-section {
    padding: 6rem 0;
    background: var(--white);
}

.flavors-showcase {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}

.flavors-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.main-flavors-image {
    width: 100%;
    max-width: 600px;
    height: auto;
    animation: float 6s ease-in-out infinite;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
}

.flavor-highlights {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.highlight {
    position: absolute;
    animation: pulse 3s infinite;
}

.highlight-dot {
    width: 12px;
    height: 12px;
    background: var(--primary-orange);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 0 var(--primary-orange);
    animation: ripple 2s infinite;
}

.highlight-label {
    position: absolute;
    top: -35px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--black);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.highlight-label::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: var(--black);
}

.highlight:hover .highlight-label {
    opacity: 1;
}


/* Position highlights around the image */

.highlight-1 {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.highlight-2 {
    top: 25%;
    right: 20%;
    animation-delay: 0.5s;
}

.highlight-3 {
    bottom: 30%;
    left: 20%;
    animation-delay: 1s;
}

.highlight-4 {
    bottom: 25%;
    right: 15%;
    animation-delay: 1.5s;
}

.highlight-5 {
    top: 50%;
    left: 10%;
    animation-delay: 2s;
}

.highlight-6 {
    top: 45%;
    right: 10%;
    animation-delay: 2.5s;
}

@keyframes ripple {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

.flavors-description h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 1.5rem;
}

.flavors-description p {
    font-size: 18px;
    color: var(--dark-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.collection-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 3rem;
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 107, 53, 0.1);
    padding: 1rem 1.5rem;
    border-radius: 15px;
    border: 2px solid rgba(255, 107, 53, 0.2);
    transition: all 0.3s ease;
}

.feature-badge:hover {
    background: rgba(255, 107, 53, 0.15);
    transform: translateX(5px);
}

.feature-badge i {
    color: var(--primary-orange);
    font-size: 1.2rem;
}

.feature-badge span {
    font-weight: 600;
    color: var(--black);
}


/* Quality Section */

.quality-section {
    padding: 6rem 0;
    background: var(--orange-gradient);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.quality-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1200 120'%3E%3Cpath d='M0,0V46.29c47.79,22.2,103.59,32.17,158,28,70.36-5.37,136.33-33.31,206.8-37.5C438.64,32.43,512.34,53.67,583,72.05c69.27,18,138.3,24.88,209.4,13.08,36.15-6,69.85-17.84,104.45-29.34C989.49,25,1113-14.29,1200,52.47V0Z' fill='%23F5F5F5'/%3E%3C/svg%3E");
    background-size: cover;
    background-repeat: no-repeat;
    z-index: 2;
}

.quality-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 6rem;
    align-items: start;
    position: relative;
    z-index: 3;
}

.quality-description {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 5vw, 48px);
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.section-title .accent {
    color: var(--black);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
}

.quality-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.quality-point {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.point-icon {
    width: 60px;
    height: 60px;
    background: var(--orange-gradient);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
}

.point-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.point-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
}

.quality-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 3px solid var(--primary-orange);
}

.quality-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 2rem;
    text-align: center;
}

.cert-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cert-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 107, 53, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.cert-item:hover {
    background: rgba(255, 107, 53, 0.1);
    transform: translateX(5px);
}

.cert-item i {
    color: var(--primary-orange);
    font-size: 1.2rem;
    min-width: 20px;
}

.cert-item span {
    font-weight: 500;
    color: var(--black);
}


/* CTA Section */

.cta-section {
    padding: 6rem 0;
    background: var(--black);
    color: var(--white);
    text-align: center;
}

.cta-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 900;
    margin-bottom: 1.5rem;
}

.cta-title .accent {
    color: var(--primary-orange);
}

.cta-description {
    font-size: 20px;
    line-height: 1.7;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary,
.btn-outline,
.cta-button {
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: var(--orange-gradient);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--black);
    transform: translateY(-3px);
}

.cta-button {
    background: var(--orange-gradient);
    color: var(--white);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.3);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 107, 53, 0.4);
}


/* Responsive Design */

@media (max-width: 1024px) {
    .hero-container,
    .story-content,
    .flavors-showcase,
    .quality-content {
        grid-template-columns: 1fr;
        gap: 4rem;
        text-align: center;
    }
    .story-visual,
    .quality-visual {
        order: -1;
    }
    .story-stats {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 1.5rem;
    }
    .mobile-toggle {
        display: flex;
    }
    .mobile-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--white);
        transition: left 0.3s ease;
        box-shadow: 2px 0 10px rgba(0, 0, 0, 0.1);
    }
    .nav-menu.active {
        left: 0;
    }
    .nav-list {
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
    }
    .container {
        padding: 0 1.5rem;
    }
    .hero-container {
        padding: 0 1.5rem;
    }
    .promise-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    .promise-card {
        padding: 2rem 1.5rem;
    }
    .story-stats {
        flex-direction: column;
        gap: 2rem;
    }
    .quality-points {
        gap: 2rem;
    }
    .quality-point {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn-primary,
    .btn-outline {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    .flavors-image {
        max-width: 400px;
    }
    .main-flavors-image {
        max-width: 450px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
        color: #1A1A1A;
    }
    .section-title {
        font-size: 32px;
        color: #1A1A1A;
    }
    .promise-card {
        padding: 2rem 1rem;
    }
    .promise-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    .visual-card,
    .quality-card {
        padding: 2rem 1.5rem;
    }
    .flavors-image {
        max-width: 300px;
    }
    .main-flavors-image {
        max-width: 350px;
    }
    .highlight-label {
        font-size: 10px;
        padding: 0.3rem 0.8rem;
    }
}