/* 
* Gpcyun Main Stylesheet
* Version: 1.0
* Last updated: 2026-01-06
*/


:root {
    --primary-color: #2E5BFF;
    --secondary-color: #FF6B2B;
    --accent-color: #00C48C;
    --text-primary: #1A2B49;
    --text-secondary: #5F738C;
    --background-light: #F7F9FC;
    --background-alternate: #EEF2F9;
    --success-color: #00BA88;
    --warning-color: #FFB547;
    --error-color: #FF5C5C;
    --neutral-light: #E4E9F2;
    --neutral-dark: #C5CEE0;
    
    
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--background-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    color: var(--text-primary);
}

a {
    color: var(--primary-color);
    transition: color 0.3s ease;
}

a:hover {
    color: var(--secondary-color);
    text-decoration: none;
}

.uk-button {
    border-radius: 4px;
    font-weight: 500;
    text-transform: none;
    transition: all 0.3s ease;
}

.uk-button-primary {
    background-color: var(--primary-color);
}

.uk-button-primary:hover {
    background-color: #1D44CC;
}

.uk-button-secondary {
    background-color: var(--secondary-color);
}

.uk-button-secondary:hover {
    background-color: #E85A1A;
}

.uk-button-default {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.uk-button-default:hover {
    border-color: var(--secondary-color);
    color: var(--secondary-color);
}


header {
    background-color: #fff;
    position: sticky;
    top: 0;
    z-index: 980;
}

.uk-navbar-container {
    padding: 10px 0;
}

.uk-navbar-nav > li > a {
    font-size: var(--text-base);
    color: var(--text-primary);
    min-height: 50px;
    text-transform: none;
    font-weight: 500;
}

.uk-navbar-nav > li.uk-active > a {
    color: var(--primary-color);
}

.contact-phone {
    color: var(--primary-color);
    font-weight: 500;
}

.contact-phone:hover {
    color: var(--secondary-color);
    text-decoration: none;
}


.hero-section {
    min-height: 80vh;
    display: flex;
    align-items: center;
    position: relative;
}

.hero-background {
    z-index: 0;
}

.hero-background img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    filter: brightness(0.7);
}

.hero-content {
    padding: 4rem 0;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.hero-content p {
    font-size: var(--text-xl);
    margin-bottom: 2rem;
}


.process-section {
    background-color: var(--background-alternate);
    padding: 4rem 0;
}

.process-step {
    text-align: center;
    position: relative;
    padding: 1.5rem;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-number {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.step-image {
    margin-bottom: 1.5rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.step-image img {
    width: 100%;
    height: auto;
    transition: transform 0.5s ease;
}

.process-step:hover .step-image img {
    transform: scale(1.05);
}

.process-step h3 {
    font-size: var(--text-xl);
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}


.age-groups-section {
    padding: 4rem 0;
}

.age-card {
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.age-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.age-image {
    margin: -20px -20px 20px -20px;
    border-radius: 10px 10px 0 0;
    overflow: hidden;
    height: 180px;
}

.age-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.age-card h3 {
    font-size: var(--text-xl);
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.metric {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.metric-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
}

.metric-label {
    font-size: var(--text-sm);
    color: var(--text-secondary);
}


.settings-section {
    padding: 4rem 0;
}

.settings-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.settings-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.uk-accordion-title {
    font-size: var(--text-lg);
    color: var(--text-primary);
    padding: 1rem;
    background-color: var(--neutral-light);
    border-radius: 5px;
    transition: background-color 0.3s ease;
}

.uk-accordion-title:hover {
    background-color: var(--neutral-dark);
    color: var(--text-primary);
}

.uk-accordion-content {
    padding: 1rem;
}


.privacy-section {
    padding: 4rem 0;
}

.privacy-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.privacy-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.privacy-card {
    background-color: var(--background-light);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.privacy-card h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}


.faq-section {
    padding: 4rem 0;
}


.contact-section {
    padding: 4rem 0;
}

.contact-info {
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 10px;
    height: 100%;
}

.contact-info h3, .contact-info h4 {
    color: var(--primary-color);
}

.contact-info ul {
    margin-top: 1.5rem;
}

.contact-info i {
    color: var(--primary-color);
    margin-right: 0.5rem;
}


.thank-you-section {
    padding: 5rem 0;
}

.thank-you-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.thank-you-icon {
    font-size: 5rem;
    color: var(--success-color);
    margin-bottom: 1.5rem;
}


.page-header {
    padding: 5rem 0;
    background-color: var(--primary-color);
    color: white;
    position: relative;
}

.page-header.uk-background-cover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 43, 73, 0.7);
    z-index: 0;
}

.page-header .uk-container {
    position: relative;
    z-index: 1;
}

.page-header h1, .page-header p {
    color: white;
}


.comparison-table {
    border-collapse: collapse;
    width: 100%;
}

.comparison-table th {
    background-color: var(--primary-color);
    color: white;
    padding: 1rem;
    text-align: left;
}

.comparison-table td {
    padding: 1rem;
    border-bottom: 1px solid var(--neutral-light);
}

.comparison-table tr:hover {
    background-color: var(--background-light);
}


.contact-info-card {
    height: 100%;
}

.contact-list li {
    display: flex;
    margin-bottom: 1.5rem;
}

.contact-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1rem;
    min-width: 30px;
    text-align: center;
}

.contact-details h3 {
    margin: 0 0 0.5rem;
    font-size: var(--text-lg);
}

.service-card, .direction-card {
    text-align: center;
    padding: 1.5rem;
    background-color: var(--background-light);
    border-radius: 10px;
    margin-bottom: 1rem;
    transition: transform 0.3s ease;
}

.service-card:hover, .direction-card:hover {
    transform: translateY(-5px);
}

.service-card i, .direction-card i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.booking-step {
    text-align: center;
    position: relative;
    padding: 2rem 1rem;
}

.booking-step .step-number {
    margin-bottom: 1rem;
}

.booking-step i {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}


.legal-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-content h3 {
    color: var(--text-primary);
    margin-top: 1.5rem;
    margin-bottom: 0.75rem;
}

.legal-content p, .legal-content ul, .legal-content ol {
    margin-bottom: 1rem;
}


.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 43, 73, 0.95);
    color: white;
    padding: 1rem;
    z-index: 1000;
    display: none;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 1rem;
}

.cookie-content h3 {
  color: white;
}

#cookie-settings {
  color: white;
}

.cookie-buttons {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.cookie-modal {
    display: none;
    position: fixed;
    z-index: 1001;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    overflow: auto;
}

.cookie-modal-content {
    background-color: white;
    margin: 10% auto;
    padding: 2rem;
    border-radius: 10px;
    max-width: 600px;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.cookie-options {
    margin: 2rem 0;
}

.cookie-option {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--neutral-light);
}

.cookie-option:last-child {
    border-bottom: none;
}

.cookie-option label {
    font-weight: 500;
    margin-left: 0.5rem;
}

.cookie-option p {
    margin-top: 0.5rem;
    margin-left: 1.8rem;
    color: var(--text-secondary);
}

.cookie-modal-buttons {
    text-align: right;
}


.accessibility-controls {
    position: fixed;
    right: 1rem;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    z-index: 900;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.accessibility-controls button {
    border: none;
    background-color: transparent;
    padding: 0.75rem;
    cursor: pointer;
    color: var(--text-primary);
    font-size: 1.25rem;
    transition: color 0.3s ease;
}

.accessibility-controls button:hover {
    color: var(--primary-color);
}


body.increased-font-size {
    font-size: 1.2rem;
}

body.increased-font-size h1 {
    font-size: 4rem;
}

body.increased-font-size h2 {
    font-size: 3rem;
}

body.increased-font-size h3 {
    font-size: 2.25rem;
}

body.increased-font-size .uk-button {
    font-size: 1.2rem;
}


body.high-contrast {
    background-color: #000;
    color: #fff;
}

body.high-contrast h1, 
body.high-contrast h2, 
body.high-contrast h3, 
body.high-contrast h4, 
body.high-contrast h5, 
body.high-contrast h6,
body.high-contrast p,
body.high-contrast li,
body.high-contrast label,
body.high-contrast span:not(.uk-icon) {
    color: #fff !important;
}

body.high-contrast .uk-card,
body.high-contrast .uk-accordion-title,
body.high-contrast .uk-accordion-content,
body.high-contrast header,
body.high-contrast footer,
body.high-contrast .uk-section:not(.uk-section-primary):not(.uk-section-secondary) {
    background-color: #000 !important;
    color: #fff !important;
}

body.high-contrast .uk-card {
    border: 1px solid #fff;
}

body.high-contrast a:not(.uk-button) {
    color: #ffff00 !important;
}

body.high-contrast .uk-button-default {
    background-color: transparent;
    color: #fff;
    border-color: #fff;
}

body.high-contrast .uk-button-primary,
body.high-contrast .uk-button-secondary {
    background-color: #fff;
    color: #000;
}

body.high-contrast .uk-table-striped tbody tr:nth-of-type(odd),
body.high-contrast .uk-table-hover tbody tr:hover {
    background-color: #333;
}


.iti {
    width: 100%;
}


footer {
    background-color: var(--text-primary);
    color: white;
}

footer h4 {
    color: white;
    font-weight: 600;
}

footer a {
    color: rgba(255, 255, 255, 0.7);
}

footer a:hover {
    color: white;
}

footer .uk-list-divider > li:not(:first-child) {
    border-top-color: rgba(255, 255, 255, 0.1);
}

footer hr {
    border-top-color: rgba(255, 255, 255, 0.1);
}


@media (max-width: 960px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-section {
        min-height: 60vh;
    }
    
    .accessibility-controls {
        right: 0.5rem;
    }
    
    .process-step, .age-card {
        margin-bottom: 2rem;
    }
}

@media (max-width: 640px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .hero-section {
        min-height: 50vh;
    }
    
    .uk-button-large {
        padding: 0 1rem;
        line-height: 38px;
        font-size: 0.875rem;
    }
    
    .accessibility-controls {
        bottom: 1rem;
        top: auto;
        right: 1rem;
        transform: none;
        flex-direction: row;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons button {
        width: 100%;
        margin-bottom: 0.5rem;
    }
    
    .age-image {
        height: 150px;
    }
}


@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes slideInUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.slide-in-up {
    animation: slideInUp 0.5s ease-out;
}