/* CUNTWIN About Us Page - Dedicated Stylesheet */
/* Complete standalone stylesheet for About page */

/* CSS Variables for Theme */
:root {
    --primary-navy: #0a0f1f;
    --secondary-navy: #1a2332;
    --accent-gold: #ffcc00;
    --accent-emerald: #00b894;
    --accent-coral: #ff7675;
    --text-white: #f5f5f5;
    --text-gray: #b8c5d1;
    --text-dark: #2c3e50;
    --gradient-gold: linear-gradient(135deg, #ffcc00 0%, #ff7675 100%);
    --gradient-navy: linear-gradient(135deg, #0a0f1f 0%, #1a2332 100%);
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    --section-padding: 80px 0;
    --container-padding: 0 20px;
    --border-radius: 12px;
    --border-radius-lg: 20px;
    --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 15px 40px rgba(0, 0, 0, 0.4);
}

/* CSS Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Base Typography */
body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-white);
    background: var(--primary-navy);
    overflow-x: hidden;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('../images/background.jpg') center/cover no-repeat;
    z-index: -1;
    will-change: transform;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--accent-gold);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    color: var(--text-white);
}

p {
    margin-bottom: 1rem;
    color: var(--text-gray);
    font-size: 1.1rem;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 15, 31, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.15s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

.logo {
    position: relative;
    flex-shrink: 0;
    z-index: 1;
}

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

.navbar-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.navbar-menu a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.15s ease;
}

.navbar-menu a:hover {
    color: var(--accent-gold);
}

.auth-buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.btn-image {
    display: inline-block;
    transition: transform 0.15s ease;
}

.btn-image:hover {
    transform: scale(1.05);
}

.btn-image img {
    height: 40px;
    width: auto;
    max-width: 120px;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
    gap: 5px;
    margin-left: auto;
    order: 2;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--accent-gold);
    transition: all 0.15s ease;
    display: block;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

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

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
    order: 3;
}

/* Placeholder removed - logo is now on the left */

/* Mobile Menu Styles */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .mobile-menu {
        position: fixed;
        top: 70px;
        right: 0;
        width: 280px;
        background: rgba(10, 15, 31, 0.98);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem 1rem;
        transform: translateX(100%);
        transition: transform 0.15s ease;
        z-index: 999;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }
    
    .mobile-menu.active {
        transform: translateX(0);
    }
    
    .navbar-menu {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
        margin-bottom: 1rem;
    }
    
    .navbar-menu li {
        width: 100%;
    }
    
    .navbar-menu a {
        display: block;
        padding: 1rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .auth-buttons {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .auth-buttons .btn-image {
        width: 100%;
        text-align: center;
    }
}

/* Override background for about page */
body {
    background: var(--primary-navy);
}

body::before {
    background: url('../images/background.jpg') center/cover no-repeat;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--container-padding);
}

/* Breadcrumbs */
.breadcrumbs {
    background: rgba(10, 15, 31, 0.8);
    padding: 1rem 0;
    margin-top: 70px;
}

.breadcrumb-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-link {
    color: var(--text-gray);
    text-decoration: none;
    transition: color 0.15s ease;
}

.breadcrumb-link:hover {
    color: var(--accent-gold);
}

.breadcrumb-item::after {
    content: '/';
    margin: 0 0.5rem;
    color: var(--text-gray);
}

.breadcrumb-item.active::after {
    display: none;
}

.breadcrumb-current {
    color: var(--accent-gold);
}

/* About Hero Section */
.about-hero {
    padding: 4rem 0 3rem;
    text-align: center;
    background: linear-gradient(135deg, rgba(10, 15, 31, 0.9), rgba(26, 35, 50, 0.9));
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-gray);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Story Section */
.about-story {
    padding: var(--section-padding);
    background: rgba(10, 15, 31, 0.6);
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-text h2 {
    margin-bottom: 1.5rem;
}

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

.story-image {
    text-align: center;
}

.story-image img {
    width: 100%;
    max-width: 500px;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
}

/* Mission & Values Section */
.mission-values {
    padding: var(--section-padding);
    background: rgba(26, 35, 50, 0.8);
}

.mission-values h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.value-card {
    background: rgba(10, 15, 31, 0.8);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.15s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-hover);
}

.value-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.value-card h3 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 1rem;
}

/* Licensing Section */
.licensing {
    padding: var(--section-padding);
    background: rgba(10, 15, 31, 0.6);
}

.licensing h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.license-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.license-info h3 {
    color: var(--accent-emerald);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.license-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.certifications {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cert-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    border-left: 3px solid var(--accent-emerald);
}

.cert-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.cert-text strong {
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.cert-text p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0;
}

.license-image {
    text-align: center;
}

.license-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
}

/* Team/Commitment Section */
.team-section {
    padding: var(--section-padding);
    background: rgba(26, 35, 50, 0.8);
}

.team-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.commitment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.commitment-item {
    background: rgba(10, 15, 31, 0.8);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    text-align: center;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.15s ease;
}

.commitment-item:hover {
    transform: translateY(-5px);
    border-color: var(--accent-gold);
    box-shadow: var(--shadow-hover);
}

.commitment-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-gold);
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.commitment-label {
    font-size: 1.1rem;
    color: var(--text-white);
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.commitment-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: var(--section-padding);
    background: rgba(10, 15, 31, 0.6);
}

.contact-section h2 {
    text-align: center;
    margin-bottom: 3rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.contact-info h3 {
    color: var(--accent-gold);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--border-radius);
    margin-bottom: 1rem;
    transition: all 0.15s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
}

.contact-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.contact-item strong {
    color: var(--accent-gold);
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.contact-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin: 0;
}

.contact-image {
    text-align: center;
}

.contact-image img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-card);
}

/* Footer Styles */
.footer {
    background: rgba(10, 15, 31, 0.95);
    padding: 3rem 0 1.5rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
}

.footer-logo p {
    color: var(--text-gray);
    font-size: 1rem;
}

.footer-column h5 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.footer-column a {
    display: block;
    color: var(--text-gray);
    text-decoration: none;
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--accent-gold);
}

.footer-payments h5 {
    color: var(--accent-gold);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.payment-icons {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
}

.payment-icon {
    font-size: 1.5rem;
    padding: 8px;
    background: var(--secondary-navy);
    border-radius: 8px;
    transition: transform 0.15s ease;
}

.payment-icon:hover {
    transform: scale(1.1);
}

.footer-payments p {
    font-size: 0.9rem;
    color: var(--text-gray);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copy p {
    margin: 0;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.footer-copy a {
    color: var(--accent-gold);
    text-decoration: none;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    font-size: 1.5rem;
    text-decoration: none;
    transition: transform 0.15s ease;
}

.social-link:hover {
    transform: scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .about-hero {
        padding: 3rem 0 2rem;
    }
    
    .story-content,
    .license-content,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .story-image,
    .license-image,
    .contact-image {
        order: -1;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
    
    .value-card,
    .commitment-item {
        padding: 1.5rem;
    }
    
    .contact-item {
        padding: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 2rem 0 1.5rem;
    }
    
    .commitment-grid {
        grid-template-columns: 1fr;
    }
    
    .commitment-number {
        font-size: 2rem;
    }
    
    .value-icon {
        font-size: 2.5rem;
    }
    
    .contact-icon {
        font-size: 1.5rem;
    }
}
