/* --- VARIABLES --- */
:root {
    --pri: #F5F7F8;
    --sec: #91A0A8;
    --acc: #68787D;
    --dark: #3C4548;
    --font-heading: 'DM Serif Display', serif;
    --font-body: 'DM Sans', sans-serif;
}

/* --- GLOBAL STYLES --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--pri);
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.2rem; }

p {
    margin-bottom: 1rem;
    color: var(--sec);
}

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

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

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

.section-padding {
    padding: 80px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-header h2 {
    margin-bottom: 0.5rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--sec);
}

.btn {
    display: inline-block;
    background-color: var(--pri);
    color: var(--dark);
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: var(--sec);
    color: var(--dark);
}

.img-fluid {
    max-width: 100%;
    height: auto;
}

.rounded {
    border-radius: 12px;
}

/* --- HEADER --- */
.header {
    background-color: var(--dark);
    padding: 1rem 0;
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
}

.sticky-header {
    position: sticky;
    top: 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}

.navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.nav-logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--pri);
}

.nav-menu {
    display: none; /* Centered logo implies menu might be elsewhere or for mobile */
    list-style: none;
}

/* On larger screens, can show menu */
@media (min-width: 768px) {
    .navbar {
        justify-content: space-between;
    }
    .nav-menu {
        display: flex;
        gap: 2rem;
    }
    .nav-link.active {
        border-bottom: 2px solid var(--pri);
    }
}

/* --- HERO MINIMAL --- */
.hero-minimal {
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.hero-minimal::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    color: #fff;
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--pri);
    margin-bottom: 2rem;
}

/* --- ITEMS FEATURED --- */
.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.item-card {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.item-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.item-content {
    padding: 20px;
}

.item-content h3 {
    margin-bottom: 10px;
}

.item-price {
    display: block;
    margin-top: 15px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--pri);
}

/* --- FEATURES GRID --- */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    text-align: center;
}

.feature-item .feature-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
}

/* --- GALLERY MASONRY --- */
.masonry-grid {
    column-count: 3;
    column-gap: 1rem;
}

.masonry-item {
    margin-bottom: 1rem;
    display: inline-block;
    width: 100%;
}

.masonry-item img {
    width: 100%;
    display: block;
    border-radius: 12px;
}

@media (max-width: 768px) { .masonry-grid { column-count: 2; } }
@media (max-width: 576px) { .masonry-grid { column-count: 1; } }

/* --- STATS ROW --- */
.stats-container {
    display: flex;
    justify-content: space-around;
    text-align: center;
    flex-wrap: wrap;
    gap: 20px;
}

.stat-item h3 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
}

/* --- PARTNERS LOGOS --- */
.logos-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 40px;
}

.logos-container img {
    max-height: 40px;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.logos-container img:hover {
    opacity: 1;
}

/* --- ABOUT PAGE --- */
.page-header { text-align: center; padding-bottom: 40px; }

.text-columns-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

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

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

.cta-simple {
    text-align: center;
    background-color: rgba(255, 255, 255, 0.05);
}

/* --- CONTACT PAGE --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info .info-item {
    margin-bottom: 2rem;
}

.social-links a {
    margin-right: 15px;
    font-size: 1.2rem;
}

.contact-form .form-group {
    margin-bottom: 1.5rem;
}

.contact-form label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--sec);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    background-color: var(--dark);
    border: 1px solid var(--acc);
    border-radius: 8px;
    color: var(--pri);
    font-family: var(--font-body);
}

/* --- FAQ PAGE --- */
.accordion {
    max-width: 800px;
    margin: 0 auto;
}

.accordion-item {
    border-bottom: 1px solid var(--acc);
}

.accordion-header {
    width: 100%;
    background: none;
    border: none;
    text-align: left;
    padding: 20px 0;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--pri);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.accordion-content p {
    padding: 0 0 20px 0;
}

.accordion-icon {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--sec);
}

/* --- FOOTER --- */
.footer-minimal {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 50px 0 20px 0;
    margin-top: 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.footer-col h4 {
    margin-bottom: 1rem;
}

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

.footer-col ul li {
    margin-bottom: 0.5rem;
}

.footer-col ul a {
    color: var(--sec);
}

.footer-col ul a:hover {
    color: var(--pri);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid var(--acc);
    padding-top: 20px;
    color: var(--sec);
    font-size: 0.9rem;
}

/* --- LEGAL PAGES --- */
.legal-page .container {
    max-width: 800px;
}

.legal-page h1, .legal-page h2 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.legal-page ul {
    padding-left: 20px;
    margin-bottom: 1rem;
}

/* --- COOKIE BANNER --- */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2e3639;
    color: var(--pri);
    padding: 20px;
    display: none; 
    justify-content: space-between;
    align-items: center;
    z-index: 1001;
    box-shadow: 0 -2px 10px rgba(0,0,0,0.3);
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-banner p {
    margin: 0;
    flex-grow: 1;
}

.cookie-banner a {
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.btn-cookie {
    background-color: var(--pri);
    color: var(--dark);
    padding: 10px 20px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
}
.btn-cookie-decline {
    background: none;
    border: 1px solid var(--sec);
    color: var(--sec);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
}

/* --- RESPONSIVE STYLES --- */
@media (max-width: 992px) {
    h1 { font-size: 2.8rem; }
    h2 { font-size: 2rem; }
}

@media (max-width: 768px) {
    .section-padding { padding: 60px 0; }
    .text-columns-grid, .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    h1 { font-size: 2.2rem; }
    .nav-logo {
        font-size: 1.5rem;
    }
    .footer-grid {
        text-align: center;
    }
    .cookie-banner {
        flex-direction: column;
    }
}