/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Crimson+Pro:wght@400;600;700&family=Karla:wght@400;700&display=swap');

/* --- CSS Variables --- */
:root {
    --pri: #F5FAFA;
    --sec: #7DB8C9;
    --acc: #4A8DA0;
    --dark: #2C5364;
    --font-heading: 'Crimson Pro', serif;
    --font-body: 'Karla', sans-serif;
    --shadow: 0 4px 6px rgba(0,0,0,0.1);
}

/* --- General Styles --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark);
    color: var(--pri);
    line-height: 1.6;
}

h1, h2, h3 {
    font-family: var(--font-heading);
    color: var(--sec);
    font-weight: 600;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; line-height: 1.1; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }

p { 
    margin-bottom: 1rem; 
    max-width: 65ch;
}

a { 
    color: var(--sec);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--pri);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* --- Layout & Containers --- */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}
.container-sm { max-width: 800px; margin: 0 auto; width: 90%; }
.container-md { max-width: 1000px; margin: 0 auto; width: 90%; }
.container-lg { max-width: 1400px; margin: 0 auto; width: 90%; }

.section {
    padding: 6rem 0;
}

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

.page-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 3rem;
}

/* --- Components --- */
.btn {
    display: inline-block;
    background-color: var(--sec);
    color: var(--dark);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-family: var(--font-body);
    border: 2px solid var(--sec);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.btn:hover {
    background-color: var(--acc);
    border-color: var(--acc);
    color: var(--pri);
}

.card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.5rem;
    text-align: center;
}

/* --- Header --- */
.header {
    background-color: var(--dark);
    padding: 1rem 0;
    z-index: 1000;
}
.header.sticky {
    position: sticky;
    top: 0;
    width: 100%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
.navbar {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.logo {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--pri);
    margin-bottom: 0.5rem;
}
.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
}
.nav-links a {
    font-weight: bold;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
}
.nav-links a:hover, .nav-links a.active {
    color: var(--sec);
    border-bottom-color: var(--sec);
}

/* --- Hero Split --- */
.hero-split {
    display: flex;
    min-height: 90vh;
}
.hero-split-content, .hero-split-image {
    width: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.hero-split-content .container { text-align: left; margin: 0 auto; padding: 2rem; }
.hero-split-content h1 { margin-bottom: 1rem; }
.hero-split-content .subtitle { font-size: 1.2rem; max-width: 50ch; margin-bottom: 2rem; }
.hero-split-image {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

/* --- CTA Split Section --- */
.cta-split { padding: 4rem 0; background-color: rgba(0,0,0,0.1); }
.cta-split-container {
    display: flex;
    align-items: center;
    gap: 3rem;
}
.cta-split-image, .cta-split-content { flex: 1; }
.cta-split-image img { border-radius: 12px; }

/* --- Team Grid Section --- */
.grid-container-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.5rem; }
.grid-container-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
.grid-container-5 { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 1.5rem; }
.team-card .team-img { 
    width: 120px; 
    height: 120px; 
    border-radius: 50%; 
    object-fit: cover; 
    margin: 0 auto 1rem; 
    border: 3px solid var(--acc);
}
.team-card h3 { color: var(--pri); }
.team-card p { font-size: 0.9rem; color: var(--sec); }

/* --- Stats Row Section --- */
.stats-row { background-color: rgba(0,0,0,0.1); }
.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
}
.stat-item { display: flex; flex-direction: column; }
.stat-number { font-size: 3rem; font-weight: 700; color: var(--sec); }
.stat-label { font-size: 1rem; color: var(--pri); }

/* --- Features Alternating Section --- */
.feature-item {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 4rem;
}
.feature-item:last-child { margin-bottom: 0; }
.feature-item:nth-child(even) { flex-direction: row-reverse; }
.feature-image, .feature-content { flex: 1; }
.feature-image img { max-width: 100px; margin: 0 auto; }
.feature-content h3 { color: var(--pri); }

/* --- Items Featured Section --- */
.item-card img { border-radius: 8px; margin-bottom: 1rem; aspect-ratio: 1/1; object-fit: cover; }
.item-card h3 { color: var(--pri); }
.item-card p { font-size: 0.9rem; margin-bottom: 1rem; }
.item-price { font-weight: bold; font-size: 1.1rem; color: var(--sec); }

/* --- About Page Sections --- */
.text-block p { margin-left: auto; margin-right: auto; }
.quote-side { background-color: rgba(0,0,0,0.1); }
.quote-container { display: flex; align-items: center; gap: 3rem; }
.quote-image { flex: 1; } .quote-image img { border-radius: 12px; }
.quote-content { flex: 1.5; }
.quote-content blockquote { font-family: var(--font-heading); font-size: 2rem; border-left: 4px solid var(--acc); padding-left: 1.5rem; margin-bottom: 1rem; color: var(--sec); }
.quote-content cite { font-style: normal; font-weight: bold; color: var(--pri); }
.features-cards .feature-card { text-align: center; }
.features-cards .feature-card img { max-width: 80px; margin: 0 auto 1rem; }
.features-cards .feature-card h3 { color: var(--pri); }
.gallery-masonry .masonry-grid { column-count: 3; column-gap: 1rem; }
.gallery-masonry img { width: 100%; margin-bottom: 1rem; border-radius: 8px; }
.cta-simple { background: var(--acc); text-align: center; }
.cta-simple h2 { color: var(--pri); }
.cta-simple p { color: var(--dark); max-width: 50ch; margin: 0 auto 2rem; }
.cta-simple .btn { background: var(--pri); color: var(--dark); border-color: var(--pri); }
.cta-simple .btn:hover { background: var(--dark); color: var(--pri); }

/* --- Contact Page --- */
.contact-split .contact-container { display: flex; gap: 3rem; }
.contact-form-wrapper { flex: 1.5; }
.contact-info-wrapper { flex: 1; padding-top: 1rem; }
.contact-info-wrapper h2 { margin-top: 2rem; }
.contact-info-wrapper h2:first-of-type { margin-top: 0; }
.contact-info-wrapper p, .contact-info-wrapper ul { margin-bottom: 1rem; }
.form-group { margin-bottom: 1.5rem; }
.form-group label { display: block; margin-bottom: 0.5rem; }
.form-group input, .form-group textarea {
    width: 100%;
    padding: 0.8rem;
    background-color: rgba(255,255,255,0.1);
    border: 1px solid var(--acc);
    border-radius: 8px;
    color: var(--pri);
    font-family: var(--font-body);
}
.hours-list { list-style: none; }

/* --- FAQ Page --- */
.faq-section .faq-container { max-width: 800px; margin: 0 auto; }
.faq-item { 
    border-bottom: 1px solid var(--acc);
    padding: 1rem 0;
}
.faq-item summary {
    font-weight: bold;
    font-size: 1.2rem;
    cursor: pointer;
    list-style: none; /* Remove default marker */
    position: relative;
    padding-right: 2rem;
    color: var(--pri);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    position: absolute;
    right: 0;
    top: 0;
    font-size: 1.5rem;
    color: var(--sec);
    transition: transform 0.2s;
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding: 1rem 0 0; }

/* --- Legal Pages --- */
.legal-page h2 { margin-top: 2rem; font-size: 1.8rem; color: var(--pri); }
.legal-page ul { margin-left: 1.5rem; margin-bottom: 1rem; }

/* --- Footer --- */
.footer-centered {
    background-color: #1a3a47;
    padding: 3rem 0;
    text-align: center;
}
.footer-content .logo { margin-bottom: 1rem; display: inline-block; }
.footer-links, .footer-legal {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin: 1.5rem 0;
    flex-wrap: wrap;
}
.footer-social p { margin-bottom: 0.5rem; }
.copyright { font-size: 0.9rem; color: var(--sec); opacity: 0.8; }

/* --- Cookie Banner --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #1a3a47;
    padding: 1rem;
    display: none;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    z-index: 2000;
    flex-wrap: wrap;
    text-align: center;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
}
.cookie-banner p { margin-bottom: 0; }
.btn-cookie {
    background: var(--sec);
    color: var(--dark);
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    cursor: pointer;
    font-weight: bold;
}
.btn-cookie:last-child { background: var(--dark); color: var(--pri); border: 1px solid var(--sec); }

/* --- Responsive Design --- */
@media (max-width: 992px) {
    .hero-split-content h1 { font-size: 2.8rem; }
    .cta-split-container, .quote-container, .contact-container {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    .section { padding: 4rem 0; }

    .navbar { flex-direction: column; }
    .nav-links { gap: 1rem; }
    .nav-links a { font-size: 0.9rem; }

    .hero-split { flex-direction: column; min-height: auto; }
    .hero-split-content, .hero-split-image { width: 100%; }
    .hero-split-content { text-align: center; padding: 4rem 1rem; }
    .hero-split-image { min-height: 300px; }
    
    .feature-item, .feature-item:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }
    
    .stats-container { flex-direction: column; gap: 2rem; }
    .gallery-masonry .masonry-grid { column-count: 2; }
}

@media (max-width: 480px) {
    .gallery-masonry .masonry-grid { column-count: 1; }
    .footer-links, .footer-legal { flex-direction: column; gap: 0.5rem; }
}
