/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&family=Montserrat:wght@400;500;600;700;800&display=swap');

/* Import variables and common styles from home.css */
@import 'home.css';

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #4A90E2;      /* Brighter mountain blue */
    --secondary: #88B04B;    /* Forest green */
    --accent: #E9408F;      /* Pink accent */
    --snow: #F5F5F5;        /* Snow white */
    --ice: #E3F2FD;         /* Ice blue */
    --dark: #1A1A2E;        /* Deep night sky */
    --dark-bg: #121212;     /* Dark background */
    --dark-surface: #1E1E1E; /* Slightly lighter dark surface */
    --text: #E0E0E0;        /* Light text */
    --text-light: #B0B0B0;  /* Lighter text */
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background-color: var(--dark-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation Styles */
header {
    background-color: var(--dark-surface);
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    max-width: 1400px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a:hover::after {
    width: 100%;
}

/* About Hero Section */
.about-hero {
    height: 80vh;
    background-image: url('../images/mountains4.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 70px;
    padding: 2rem 0;
}

.about-hero .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        rgba(26, 26, 46, 0.7),
        rgba(18, 18, 18, 0.8)
    );
}

.about-hero .hero-content {
    position: relative;
    z-index: 1;
    color: var(--snow);
    padding: 2rem 20px;
    max-width: 800px;
}

.about-hero .hero-logo {
    margin-bottom: 2rem;
}

.about-hero .hero-logo img {
    height: 120px;
    width: auto;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.about-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.about-hero p {
    font-size: 1.4rem;
    max-width: 600px;
    margin: 0 auto;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

/* Mission Section */
.mission-section {
    padding: 80px 0;
    background-color: var(--dark-surface);
    text-align: center;
    margin: 4rem 0;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mission-section .container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.mission-content {
    flex: 1;
    text-align: left;
}

.mission-logo {
    flex: 0 0 200px;
}

.mission-logo img {
    width: 100%;
    height: auto;
    max-width: 150px;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.3));
}

.mission-section h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.mission-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

/* Timeline Section */
.timeline-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
    position: relative;
}

.timeline-section h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: var(--primary);
    top: 0;
}

.timeline-item {
    position: relative;
    margin-bottom: 4rem;
    padding-top: 20px;
}

.timeline-dot {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 20px;
    background: var(--primary);
    border-radius: 50%;
    border: 4px solid var(--dark-bg);
    box-shadow: 0 0 0 4px var(--primary);
    z-index: 2;
    top: 0;
    margin-left: 0;
}

.timeline-content {
    width: calc(50% - 40px);
    padding: 20px;
    background: var(--dark-surface);
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-left: auto;
}

.timeline-date {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.timeline-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background-color: var(--dark-bg);
}

.values-section h2 {
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    text-align: center;
    padding: 2rem;
    background: var(--dark-surface);
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
}

.value-card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.value-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 1rem;
}

.value-card p {
    color: var(--text-light);
    line-height: 1.6;
}

/* Founder's Story Section */
.founder-section {
    padding: 80px 0;
    background-color: var(--dark-surface);
    margin: 4rem 0;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.founder-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.founder-content h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 2rem;
}

.founder-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-light);
}

.founder-signature {
    margin-top: 2rem;
    font-size: 1.2rem;
    font-style: italic;
    color: var(--text);
}

.founder-signature span {
    display: block;
    font-size: 1rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* Burger Menu Styles */
.burger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    cursor: pointer;
    z-index: 1100;
}

.burger span {
    display: block;
    width: 26px;
    height: 3px;
    margin: 4px 0;
    background: var(--primary);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.burger.burger-active span:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
}

.burger.burger-active span:nth-child(2) {
    opacity: 0;
}

.burger.burger-active span:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Burger Menu */
    .burger {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: 0;
        height: 100vh;
        width: 70vw;
        max-width: 320px;
        background: var(--dark-surface);
        box-shadow: -2px 0 12px rgba(0,0,0,0.2);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 5rem 2rem 2rem 2rem;
        gap: 1.5rem;
        transform: translateX(100%);
        transition: transform 0.3s ease;
        z-index: 1050;
        display: flex;
    }
    
    .nav-links.nav-active {
        transform: translateX(0);
    }
    
    .nav-links li {
        width: 100%;
    }
    
    .nav-links a {
        font-size: 1.2rem;
        width: 100%;
        display: block;
        padding: 0.7rem 0;
    }
    
    nav {
        position: relative;
    }
    
    .nav-links {
        /* Remove display: none; so menu can slide in */
        display: flex !important;
    }
    
    /* Header and Navigation */
    header {
        padding: 0.5rem 2%;
    }
    
    nav {
        padding: 0.7rem 2%;
    }
    
    .logo img {
        height: 32px;
    }
    
    .logo span {
        font-size: 1.1rem;
    }
    
    /* Hero Section */
    .about-hero {
        height: 60vh;
        margin-top: 55px;
        padding: 2rem 0.5rem;
    }
    
    .about-hero .hero-content {
        max-width: 98vw;
        padding: 1rem 0.5rem;
    }
    
    .about-hero .hero-logo img {
        height: 80px;
        width: auto;
    }
    
    .about-hero h1 {
        font-size: 2.3rem;
        margin-bottom: 1rem;
        text-align: center;
        width: 100%;
        padding: 0 0.5rem;
        box-sizing: border-box;
    }
    
    .about-hero p {
        font-size: 1.1rem;
        margin-bottom: 1.2rem;
        margin-top: 0.7rem;
        padding-bottom: 0.7rem;
        text-align: center;
        width: 100%;
        padding: 0 0.5rem 0.7rem 0.5rem;
        box-sizing: border-box;
    }
    
    /* Mission Section */
    .mission-section {
        padding: 3rem 0;
        margin: 2rem 0;
        border-radius: 12px;
    }
    
    .mission-section .container {
        flex-direction: column;
        gap: 2rem;
        padding: 0 1rem;
    }
    
    .mission-content {
        text-align: center;
    }
    
    .mission-logo {
        flex: 0 0 150px;
    }
    
    .mission-logo img {
        max-width: 120px;
    }
    
    .mission-section h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .mission-section p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Timeline Section */
    .timeline-section {
        padding: 3rem 0;
    }
    
    .timeline-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .timeline {
        padding: 0 1rem;
    }
    
    .timeline::before {
        left: 20px;
    }
    
    .timeline-dot {
        left: 20px;
        transform: translateX(-50%);
        top: 0;
        margin-left: -13px;
    }
    
    .timeline-content {
        width: calc(100% - 60px);
        margin-left: 60px !important;
        padding: 15px;
    }
    
    .timeline-date {
        font-size: 1rem;
    }
    
    .timeline-content h3 {
        font-size: 1.2rem;
        margin-bottom: 0.8rem;
    }
    
    .timeline-content p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Values Section */
    .values-section {
        padding: 3rem 0;
    }
    
    .values-section h2 {
        font-size: 2rem;
        margin-bottom: 2rem;
        padding: 0 1rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .value-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }
    
    .value-card p {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Founder's Section */
    .founder-section {
        padding: 3rem 0;
        margin: 2rem 0;
        border-radius: 12px;
    }
    
    .founder-content {
        padding: 0 1rem;
    }
    
    .founder-content h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
    
    .founder-content p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1.2rem;
    }
    
    .founder-signature {
        font-size: 1.1rem;
        margin-top: 1.5rem;
    }
    
    .founder-signature span {
        font-size: 0.9rem;
        margin-top: 0.3rem;
    }
}

@media (max-width: 480px) {
    /* Header and Navigation */
    .logo img {
        height: 28px;
    }
    
    .logo span {
        font-size: 1rem;
    }
    
    /* Hero Section */
    .about-hero {
        height: 50vh;
        margin-top: 50px;
        padding: 1.5rem 0.5rem;
    }
    
    .about-hero .hero-logo img {
        height: 60px;
    }
    
    .about-hero h1 {
        font-size: 2rem;
        margin-bottom: 0.8rem;
    }
    
    .about-hero p {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    /* Mission Section */
    .mission-section {
        padding: 2rem 0;
        margin: 1.5rem 0;
    }
    
    .mission-section .container {
        padding: 0 0.8rem;
    }
    
    .mission-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .mission-section p {
        font-size: 0.95rem;
    }
    
    .mission-logo {
        flex: 0 0 120px;
    }
    
    .mission-logo img {
        max-width: 100px;
    }
    
    /* Timeline Section */
    .timeline-section {
        padding: 2rem 0;
    }
    
    .timeline-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .timeline {
        padding: 0 0.8rem;
    }
    
    .timeline-content {
        padding: 12px;
    }
    
    .timeline-date {
        font-size: 0.9rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
        margin-bottom: 0.6rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    /* Values Section */
    .values-section {
        padding: 2rem 0;
    }
    
    .values-section h2 {
        font-size: 1.8rem;
        margin-bottom: 1.5rem;
    }
    
    .values-grid {
        padding: 0 0.8rem;
    }
    
    .value-card {
        padding: 1.2rem;
    }
    
    .value-card i {
        font-size: 1.8rem;
        margin-bottom: 0.8rem;
    }
    
    .value-card h3 {
        font-size: 1.2rem;
        margin-bottom: 0.6rem;
    }
    
    .value-card p {
        font-size: 0.9rem;
    }
    
    /* Founder's Section */
    .founder-section {
        padding: 2rem 0;
        margin: 1.5rem 0;
    }
    
    .founder-content {
        padding: 0 0.8rem;
    }
    
    .founder-content h2 {
        font-size: 1.8rem;
        margin-bottom: 1.2rem;
    }
    
    .founder-content p {
        font-size: 0.95rem;
        margin-bottom: 1rem;
    }
    
    .founder-signature {
        font-size: 1rem;
        margin-top: 1.2rem;
    }
    
    .founder-signature span {
        font-size: 0.85rem;
    }
}

/* iPhone SE and very small screens */
@media (max-width: 375px) {
    .about-hero {
        height: 60vh;
        margin-top: 60px;
        padding: 3rem 0.5rem;
    }
    
    .about-hero .hero-content {
        padding: 1.5rem 0.5rem;
    }
    
    .about-hero .hero-logo img {
        height: 50px;
    }
    
    .about-hero h1 {
        font-size: 1.8rem;
        margin-bottom: 0.6rem;
    }
    
    .about-hero p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }
}

/* Cart Badge Styles - Minimalist & Clean */
.cart-link {
    position: relative;
    display: inline-block;
}

.cart-badge {
    position: absolute;
    top: -8px;
    right: -24px;
    background: var(--accent);
    color: var(--snow);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.75rem;
    line-height: 1;
    border-radius: 12px;
    border: 2px solid var(--dark-surface);
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(233, 64, 143, 0.25);
    z-index: 10;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

/* Badge states for different quantities */
.cart-badge[data-count="0"] {
    display: none;
}

.cart-badge[data-count="1"] {
    background: var(--accent);
    box-shadow: 0 2px 8px rgba(233, 64, 143, 0.25);
}

.cart-badge[data-count="2"],
.cart-badge[data-count="3"] {
    background: linear-gradient(135deg, var(--accent) 0%, #E55A8F 100%);
    box-shadow: 0 2px 8px rgba(233, 64, 143, 0.3);
}

.cart-badge[data-count="4"],
.cart-badge[data-count="5"] {
    background: linear-gradient(135deg, var(--accent) 0%, #E9408F 100%);
    box-shadow: 0 2px 8px rgba(233, 64, 143, 0.35);
}

.cart-badge[data-count="6"],
.cart-badge[data-count="7"],
.cart-badge[data-count="8"],
.cart-badge[data-count="9"] {
    background: linear-gradient(135deg, var(--accent) 0%, #E9408F 100%);
    box-shadow: 0 2px 8px rgba(233, 64, 143, 0.4);
}

.cart-badge[data-count="10"] {
    background: linear-gradient(135deg, var(--accent) 0%, #E9408F 100%);
    box-shadow: 0 2px 8px rgba(233, 64, 143, 0.5);
    animation: pulse 2s infinite;
}

/* Pulse animation for high quantities */
@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 2px 8px rgba(233, 64, 143, 0.5);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 4px 12px rgba(233, 64, 143, 0.6);
    }
}

/* Navigation Cart Link */
.nav-links a[href="cart.php"] {
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a[href="cart.php"]:hover {
    transform: translateY(-1px);
}

.nav-links a[href="cart.php"]:hover .cart-badge {
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(233, 64, 143, 0.4);
}

/* Responsive adjustments for cart badge */
@media (max-width: 768px) {
    .cart-badge {
        top: -6px;
        right: -20px;
        font-size: 0.7rem;
        min-width: 18px;
        height: 18px;
        padding: 0 5px;
    }
}

@media (max-width: 480px) {
    .cart-badge {
        top: -5px;
        right: -18px;
        font-size: 0.65rem;
        min-width: 16px;
        height: 16px;
        padding: 0 4px;
        border-width: 1.5px;
    }
} 