/* Auxiliary Pages Stylesheet */

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

:root {
    /* Colors */
    --ice-blue: #4A90B8;
    --sand-beige: #D4B896;
    --polar-white: #FFFFFF;
    --deep-blue: #2C5F7E;
    --light-blue: #E8F4F8;
    --warm-gray: #F8F9FA;
    --text-dark: #2D3748;
    --text-light: #718096;
    --shadow-light: rgba(74, 144, 184, 0.1);
    --shadow-medium: rgba(74, 144, 184, 0.2);
    
    /* Typography */
    --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
}

body {
    font-family: var(--font-family);
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--polar-white);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-lg);
}

/* Header Styles */
.header {
    background: linear-gradient(135deg, var(--polar-white) 0%, var(--light-blue) 100%);
    padding: var(--spacing-lg) 0;
    box-shadow: 0 2px 10px var(--shadow-light);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.logo {
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

.brand-name {
    font-size: var(--font-size-2xl);
    font-weight: 700;
    color: var(--ice-blue);
    letter-spacing: -0.025em;
    text-decoration: none;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: var(--spacing-xl);
}

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

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

.nav-links .phone {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--ice-blue);
    text-decoration: none;
}

/* Main Content */
.main-content {
    flex: 1;
    padding: var(--spacing-3xl) 0;
}

.page-header {
    text-align: center;
    margin-bottom: var(--spacing-3xl);
    padding: var(--spacing-2xl) 0;
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--polar-white) 100%);
    border-radius: var(--radius-xl);
}

.page-header h1 {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: var(--spacing-md);
    line-height: 1.2;
}

.page-header p {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Content Sections */
.content-section {
    margin-bottom: var(--spacing-3xl);
}

.section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: start;
}

.section-grid.reverse {
    direction: rtl;
}

.section-grid.reverse > * {
    direction: ltr;
}

.single-column {
    max-width: 800px;
    margin: 0 auto;
}

.text-content h2 {
    font-size: var(--font-size-3xl);
    font-weight: 700;
    color: var(--deep-blue);
    margin-bottom: var(--spacing-lg);
}

.text-content p {
    font-size: var(--font-size-lg);
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.7;
}

.image-placeholder {
    background: linear-gradient(135deg, var(--light-blue) 0%, var(--ice-blue) 100%);
    border-radius: var(--radius-xl);
    padding: var(--spacing-3xl);
    text-align: center;
    color: var(--polar-white);
    font-weight: 500;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--polar-white);
    box-shadow: 0 10px 30px var(--shadow-light);
}

/* Mission Points */
.mission-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-xl);
}

.point {
    padding: var(--spacing-lg);
    background: var(--light-blue);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--ice-blue);
}

.point h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: var(--spacing-xs);
}

.point p {
    color: var(--text-light);
    font-size: var(--font-size-base);
    margin: 0;
}

/* Policy Content */
.policy-content {
    background: var(--polar-white);
    padding: 0;
    border-radius: 0;
    font-size: var(--font-size-base);
    color: var(--text-dark);
    text-align: left;
    border: none;
}

.policy-sections {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-2xl);
}

.policy-section {
    background: var(--warm-gray);
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    border-left: 4px solid var(--ice-blue);
}

.policy-section h3 {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--deep-blue);
    margin-bottom: var(--spacing-md);
}

.policy-section p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

.policy-section a {
    color: var(--ice-blue);
    text-decoration: none;
    font-weight: 500;
}

.policy-section a:hover {
    text-decoration: underline;
}

/* SVG Illustrations */
.svg-illustration {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--light-blue);
    border-radius: var(--radius-xl);
    padding: var(--spacing-xl);
    border: 2px solid var(--polar-white);
    box-shadow: 0 10px 30px var(--shadow-light);
}

.svg-illustration svg {
    max-width: 100%;
    height: auto;
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--ice-blue) 100%);
    color: var(--polar-white);
    padding: var(--spacing-lg);
    box-shadow: 0 -5px 20px var(--shadow-medium);
    z-index: 1000;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--spacing-lg);
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text p {
    margin: 0;
    font-size: var(--font-size-base);
    line-height: 1.5;
}

.cookie-banner-text a {
    color: var(--sand-beige);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: var(--spacing-md);
    flex-shrink: 0;
}

.cookie-btn {
    padding: var(--spacing-sm) var(--spacing-lg);
    border: none;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: var(--font-size-sm);
}

.cookie-btn-accept {
    background: var(--sand-beige);
    color: var(--text-dark);
}

.cookie-btn-accept:hover {
    background: #C8A87A;
}

.cookie-btn-decline {
    background: transparent;
    color: var(--polar-white);
    border: 1px solid var(--polar-white);
}

.cookie-btn-decline:hover {
    background: var(--polar-white);
    color: var(--text-light);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, var(--deep-blue) 0%, var(--ice-blue) 100%);
    color: var(--polar-white);
    padding: var(--spacing-3xl) 0 var(--spacing-xl);
    margin-top: auto;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: var(--spacing-xl);
    margin-bottom: var(--spacing-2xl);
}

.footer-section {
    flex: 1;
    min-width: 200px;
}

.footer-section:first-child {
    flex: 2;
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

.footer-logo span {
    font-size: var(--font-size-xl);
    font-weight: 600;
}

.footer-section h4 {
    font-size: var(--font-size-lg);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
}

.footer-section p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: var(--spacing-sm);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--polar-white);
}

.footer-bottom {
    text-align: center;
    padding-top: var(--spacing-xl);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0 var(--spacing-md);
    }
    
    .header-content {
        flex-direction: column;
        gap: var(--spacing-lg);
        text-align: center;
    }
    
    .nav-links {
        flex-direction: column;
        gap: var(--spacing-md);
    }
    
    .section-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
        text-align: center;
    }
    
    .section-grid.reverse {
        direction: ltr;
    }
    
    .page-header h1 {
        font-size: var(--font-size-3xl);
    }
    
    .text-content h2 {
        font-size: var(--font-size-2xl);
    }
    
    .about-img,
    .safety-img,
    .map-img {
        min-height: 200px;
        width: 100%;
        object-fit: cover;
        border-radius: var(--radius-xl);
        box-shadow: 0 10px 30px var(--shadow-light);
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-section {
        min-width: auto;
    }
    
    .footer-section:first-child {
        max-width: none;
    }
    
    .mission-points {
        margin-top: var(--spacing-lg);
    }
}

@media (max-width: 480px) {
    .brand-name {
        font-size: var(--font-size-xl);
    }
    
    .page-header h1 {
        font-size: var(--font-size-2xl);
    }
    
    .page-header p {
        font-size: var(--font-size-base);
    }
    
    .text-content h2 {
        font-size: var(--font-size-xl);
    }
    
    .text-content p {
        font-size: var(--font-size-base);
    }
    
    .policy-content {
        padding: var(--spacing-xl);
    }
}