/* =================================================================
   ATELIER MEUSY - Main Stylesheet
   ================================================================= */

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

:root {
    --primary-red: #8d1717;
    --primary-blue: #3a4e63;
    --text-dark: #212121;
    --text-medium: #535353;
    --bg-light: #f8f5f5;
    --bg-gray: #ededed;
    --white: #ffffff;
    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
}

main {
    width: 100%;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

.container-full {
    max-width: 100%;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 10px 60px;
    font-size: 20px;
    font-weight: 600;
    text-align: center;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-primary {
    background: var(--primary-red);
    color: var(--white);
}

.btn-primary:hover {
    background: #6d0f0f;
    transform: translateY(-2px);
}

.btn-secondary {
    background: var(--primary-blue);
    color: var(--white);
}

.btn-secondary:hover {
    background: #2a3a4a;
    transform: translateY(-2px);
}

/* =================================================================
   HEADER
   ================================================================= */
.site-header {
    width: 100%;
    background: #8e1818;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 2rem;
    margin: 0;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 90%;
    margin: 0 auto;
}

.logo {
    flex: 0 0 auto;
}

.main-nav {
    flex: 0 0 auto;
    margin-left: auto;
}

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

.main-nav ul {
    display: flex;
    gap: 15px;
    align-items: center;
}

.main-nav a {
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    padding: 8px 15px;
    line-height: 40px;
}

.main-nav a:hover {
    color: #f5f5f5;
    opacity: 0.8;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    position: absolute;
    right: 2rem;
    top: 50%;
    transform: translateY(-50%);
}

.mobile-menu-toggle span {
    width: 30px;
    height: 3px;
    background: #ffffff;
    transition: var(--transition);
}

/* =================================================================
   HERO SECTION
   ================================================================= */
.hero {
    width: 100%;
    height: 650px;
    background: url('../uploads/ateliermeusy-1.png') center center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 0;
    padding: 0;
}

.hero-overlay {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 0;
}

.hero-logo {
    width: 100%;
    max-width: 100%;
    height: 100%;
    max-height: 100%;
    object-fit: cover;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
}

/* =================================================================
   TAGLINE SECTION
   ================================================================= */
.tagline {
    padding: 50px 0 20px;
    text-align: center;
}

.tagline h1 {
    color: var(--primary-red);
    font-size: 20px;
    font-weight: 500;
    line-height: 35px;
    max-width: 900px;
    margin: 0 auto;
}

/* =================================================================
   ABOUT INTRO SECTION
   ================================================================= */
.about-intro {
    padding: 80px 0;
}

.intro-content {
    display: flex;
    gap: 50px;
    align-items: flex-start;
}

.intro-image {
    flex: 0 0 45%;
}

.intro-text {
    flex: 1;
    padding-top: 40px;
}

.intro-text h2 {
    color: var(--primary-red);
    font-size: 59px;
    font-weight: 400;
    line-height: 66px;
    margin-bottom: 60px;
}

.intro-text p {
    font-size: 20px;
    color: #000;
    margin-bottom: 60px;
    line-height: 1.6;
}

/* =================================================================
   WHO WE ARE SECTION
   ================================================================= */
.who-we-are {
    background: var(--bg-light);
    padding: 50px 0 30px;
}

.who-we-are h2 {
    color: var(--primary-blue);
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 40px;
}

.who-intro {
    font-size: 18px;
    line-height: 1.6;
    color: #000;
    margin-bottom: 50px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    margin-bottom: 50px;
}

.service-card {
    background: var(--white);
    padding: 20px;
    text-align: center;
}

.service-icon {
    margin-bottom: 10px;
    display: flex;
    justify-content: center;
}

.service-card h3 {
    color: var(--primary-blue);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 25px;
}

.service-card p {
    font-size: 18px;
    line-height: 1.3;
    color: #000;
    margin: 0 50px 25px;
}

.about-footer {
    text-align: center;
    margin-top: 25px;
}

/* =================================================================
   ACTIVITIES SECTION
   ================================================================= */
.activities {
    background: var(--white);
    padding: 50px 0;
}

.activities h2 {
    color: var(--primary-red);
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 50px;
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.activity-card {
    background: var(--white);
    text-align: center;
}

.activity-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    margin-bottom: 25px;
}

.activity-card h3 {
    color: var(--primary-red);
    font-size: 23px;
    font-weight: 700;
    margin-bottom: 10px;
}

.activity-card p {
    font-size: 18px;
    line-height: 23px;
    color: var(--text-dark);
    text-align: left;
    padding: 0 20px 15px;
}

.activity-card ul {
    list-style: disc;
    text-align: left;
    padding: 0 20px 15px 40px;
}

.activity-card li {
    font-size: 18px;
    line-height: 23px;
    color: var(--text-dark);
    margin-bottom: 5px;
}

/* =================================================================
   REALIZATIONS CAROUSEL
   ================================================================= */
.realizations-carousel {
    background: var(--bg-gray);
    padding: 50px 0;
}

.realizations-carousel h2 {
    color: var(--primary-red);
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 50px;
    max-width: 80%;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
}

.carousel-container {
    max-width: 80%;
    margin: 0 auto;
    position: relative;
}

.realizationsSwiper {
    padding-bottom: 20px;
}

/* Ensure all slides have equal height */
.realizationsSwiper .swiper-slide {
    height: auto;
}

.realization-card {
    background: var(--white);
    padding: 30px;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 480px;
}

.realization-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.realization-card h3 {
    color: var(--primary-red);
    font-size: 20px;
    font-weight: 700;
    margin: 7px 0;
}

.realization-meta {
    font-size: 13px;
    line-height: 16px;
    color: var(--primary-red);
    margin-top: auto;
    padding-top: 20px;
}

/* Swiper custom styles */
.realizationsSwiper .swiper-button-next,
.realizationsSwiper .swiper-button-prev {
    color: var(--primary-red);
    width: 30px;
    height: 30px;
}

.realizationsSwiper .swiper-button-next::after,
.realizationsSwiper .swiper-button-prev::after {
    font-size: 30px;
}

/* Custom pagination positioned outside and below */
.swiper-pagination-custom {
    text-align: center;
    margin-top: 30px;
    padding: 20px 0;
}

.swiper-pagination-custom .swiper-pagination-bullet {
    background: var(--primary-red);
    width: 10px;
    height: 10px;
    margin: 0 5px;
    opacity: 0.5;
    display: inline-block;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.swiper-pagination-custom .swiper-pagination-bullet-active {
    opacity: 1;
    transform: scale(1.2);
}

/* =================================================================
   CONTACT SECTION
   ================================================================= */
.contact {
    padding: 80px 0;
    background: var(--white);
}

.contact h2 {
    color: var(--primary-red);
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 50px;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
}

.contact-info h3 {
    color: var(--primary-blue);
    font-size: 24px;
    margin-bottom: 20px;
}

.contact-info p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.contact-info a {
    color: var(--primary-red);
}

.contact-info a:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 8px;
}

.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
    font-family: inherit;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(141, 23, 23, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-message {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    display: none;
}

.form-message.success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
    display: block;
}

.form-message.error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
    display: block;
}

/* =================================================================
   FOOTER
   ================================================================= */
.site-footer {
    background: var(--primary-blue);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--white);
}

.footer-col p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.footer-col ul li {
    margin-bottom: 10px;
}

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

.footer-col a:hover {
    color: var(--primary-red);
}

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

.footer-bottom p {
    margin-bottom: 5px;
}

.footer-bottom a {
    color: var(--white);
    font-weight: 600;
}

.footer-bottom a:hover {
    color: var(--primary-red);
}

/* =================================================================
   PAGE HEADER & GENERIC PAGES
   ================================================================= */
.page-header {
    background: var(--primary-blue);
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
}

.page-header h1 {
    font-size: 48px;
    font-weight: 600;
    margin-bottom: 0;
}

.page-content {
    padding: 80px 0;
}

.page-content h2 {
    color: var(--primary-red);
    font-size: 36px;
    margin-bottom: 25px;
    margin-top: 40px;
}

.page-content h3 {
    color: var(--primary-blue);
    font-size: 28px;
    margin-bottom: 20px;
    margin-top: 30px;
}

.page-content p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.page-content ul,
.page-content ol {
    margin-left: 30px;
    margin-bottom: 20px;
}

.page-content li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.page-content img {
    max-width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 8px;
}

/* Call to Action Section */
.cta-section {
    background: var(--bg-light);
    padding: 80px 0;
    text-align: center;
}

.cta-section h2 {
    color: var(--primary-red);
    font-size: 42px;
    font-weight: 600;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 20px;
    color: var(--text-dark);
    margin-bottom: 30px;
}

/* Two Column Layout */
.two-col-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.two-col-layout img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

/* Three Column Layout */
.three-col-layout {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

/* Cards */
.info-card {
    background: var(--white);
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: var(--transition);
}

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

.info-card h3 {
    color: var(--primary-red);
    font-size: 24px;
    margin-bottom: 15px;
}

.info-card p {
    color: var(--text-dark);
    line-height: 1.6;
}

/* Breadcrumbs */
.breadcrumbs {
    padding: 20px 0;
    font-size: 14px;
}

.breadcrumbs a {
    color: var(--primary-blue);
}

.breadcrumbs a:hover {
    text-decoration: underline;
}

.breadcrumbs span {
    margin: 0 8px;
    color: var(--text-medium);
}

/* =================================================================
   RENTAL SECTIONS (Grills & Christmas Tree)
   ================================================================= */
.grill-rental,
.christmas-tree-rental {
    background: var(--white);
    padding: 50px 0;
}

.grill-rental h2,
.christmas-tree-rental h2 {
    color: var(--primary-red);
    font-size: 55px;
    font-weight: 600;
    margin-bottom: 50px;
}

/* Grid layout for multiple rental items - side by side on desktop */
.rental-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

/* Individual rental item - vertical layout (image on top, content below) */
.rental-item {
    display: flex;
    flex-direction: column;
    background: var(--bg-light);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.rental-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.rental-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.rental-content h3 {
    color: var(--primary-blue);
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 20px;
}

.rental-features {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 25px;
}

.rental-features li {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.rental-pricing {
    background: var(--white);
    padding: 20px;
    border-radius: 8px;
    margin-top: auto;
}

.rental-pricing p {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.rental-pricing p:last-child {
    margin-bottom: 0;
}

.rental-pricing strong {
    color: var(--primary-red);
    font-weight: 700;
}

/* Christmas Tree Specific Styles */
.christmas-tree-header {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 50px;
    align-items: start;
    margin-bottom: 40px;
}

.christmas-tree-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.christmas-tree-description h3 {
    color: var(--primary-blue);
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 20px;
}

.tree-features {
    list-style: disc;
    padding-left: 20px;
    margin-bottom: 0;
}

.tree-features li {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.tree-models {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}

.tree-model {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 8px;
}

.tree-model h4 {
    color: var(--primary-red);
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
}

.tree-dimensions,
.tree-colors {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.tree-pricing {
    background: var(--white);
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
}

.tree-pricing p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.tree-pricing p:last-child {
    margin-bottom: 0;
}

.tree-pricing strong {
    color: var(--primary-red);
    font-weight: 700;
}

.rental-price {
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px solid var(--bg-gray);
}

.small-text {
    font-size: 14px;
    color: var(--text-medium);
}

.christmas-tree-cta {
    text-align: center;
}

.christmas-tree-rental .btn {
    margin-top: 10px;
}

/* =================================================================
   RESPONSIVE DESIGN
   ================================================================= */

/* Tablet Landscape (1024px and below) */
@media screen and (max-width: 1024px) {
    .activities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    .carousel-container {
        max-width: 90%;
    }

    /* Rental sections - single column on tablet */
    .rental-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .rental-image img {
        height: 300px;
    }

    /* Christmas tree - single column on tablet */
    .christmas-tree-header {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .tree-models {
        grid-template-columns: 1fr;
        gap: 25px;
    }
}

/* Tablet Portrait (768px and below) */
@media screen and (max-width: 768px) {
    .intro-content {
        flex-direction: column;
    }

    .intro-image {
        flex: 1;
        width: 100%;
    }

    .intro-text {
        padding-top: 20px;
    }

    .intro-text h2 {
        font-size: 40px;
        line-height: 1.2;
        margin-bottom: 30px;
    }

    .intro-text p {
        font-size: 18px;
        margin-bottom: 30px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-card p {
        margin: 0 20px 25px;
    }

    .activities-grid {
        grid-template-columns: 1fr;
    }

    .activity-card img {
        height: 300px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .who-we-are h2,
    .activities h2,
    .realizations-carousel h2,
    .contact h2 {
        font-size: 40px;
    }

    .grill-rental h2,
    .christmas-tree-rental h2 {
        font-size: 40px;
    }

    .rental-content h3 {
        font-size: 24px;
    }

    .christmas-tree-description h3 {
        font-size: 28px;
    }

    .tree-model h4 {
        font-size: 22px;
    }

    .rental-features li,
    .rental-pricing p,
    .tree-features li {
        font-size: 16px;
    }

    .tree-pricing p,
    .tree-dimensions,
    .tree-colors {
        font-size: 15px;
    }

    .rental-content {
        padding: 25px;
    }

    .rental-image img {
        height: 280px;
    }

    .tree-model {
        padding: 20px;
    }

    .btn {
        padding: 10px 50px;
        font-size: 18px;
    }

    /* New page layouts responsive */
    .page-header h1 {
        font-size: 36px;
    }

    .two-col-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .three-col-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .cta-section h2 {
        font-size: 32px;
    }

    .cta-section p {
        font-size: 18px;
    }
}

/* Mobile Landscape (640px and below) */
@media screen and (max-width: 640px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .main-nav {
        position: fixed;
        top: 0;
        left: -100%;
        bottom: 0;
        width: 80%;
        max-width: 300px;
        background: #8e1818;
        box-shadow: 4px 0 10px rgba(0,0,0,0.3);
        transition: left 0.3s ease;
        overflow-y: auto;
        height: 100vh;
        z-index: 9999;
    }

    .main-nav.active {
        left: 0;
    }

    .main-nav ul {
        flex-direction: column;
        padding: 80px 30px 20px;
        gap: 0;
        align-items: stretch;
    }

    .main-nav a {
        display: block;
        padding: 15px 0;
        color: #ffffff;
        text-align: left;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        line-height: 50px;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

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

    /* Overlay when menu is open */
    .main-nav.active::before {
        content: '';
        position: fixed;
        top: 0;
        left: 100%;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,0.5);
        z-index: -1;
    }

    .hero {
        height: 350px;
    }

    .hero-logo {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
    }

    .tagline h1 {
        font-size: 18px;
        line-height: 26px;
        font-weight: 700;
    }

    .about-intro {
        padding: 40px 0;
    }

    .intro-text h2 {
        font-size: 30px;
        font-weight: 700;
        margin-bottom: 20px;
    }

    .intro-text p,
    .who-intro {
        text-align: center;
    }

    .who-we-are h2 {
        margin-left: 20px;
    }

    .service-card p {
        text-align: center;
    }

    .realizationsSwiper .swiper-button-next,
    .realizationsSwiper .swiper-button-prev {
        display: none;
    }

    /* Better spacing for carousel cards on mobile */
    .carousel-container {
        max-width: 95%;
    }

    .realization-card {
        padding: 20px;
        min-height: 400px;
    }

    .realization-card img {
        height: 250px;
        margin-bottom: 15px;
    }

    .swiper-pagination-custom {
        margin-top: 20px;
        padding: 15px 0;
    }

    .contact-form {
        padding: 30px 20px;
    }

    .btn {
        padding: 10px 40px;
        font-size: 18px;
    }

    .logo img {
        height: 60px;
    }

    .site-header {
        padding: 1rem;
    }
}

/* Mobile Portrait (480px and below) */
@media screen and (max-width: 480px) {
    body {
        font-size: 14px;
    }

    .container {
        padding: 0 15px;
    }

    .logo img {
        height: 50px;
    }

    .hero {
        height: 300px;
    }

    .hero-logo {
        width: 100%;
        max-width: 100%;
        height: 100%;
        max-height: 100%;
    }

    .tagline h1 {
        font-size: 16px;
        line-height: 24px;
    }

    .intro-text h2 {
        font-size: 26px;
    }

    .intro-text p {
        font-size: 16px;
    }

    .who-we-are h2,
    .activities h2,
    .realizations-carousel h2,
    .contact h2 {
        font-size: 32px;
    }

    .grill-rental h2,
    .christmas-tree-rental h2 {
        font-size: 32px;
    }

    .rental-content h3 {
        font-size: 22px;
    }

    .christmas-tree-description h3 {
        font-size: 24px;
    }

    .tree-model h4 {
        font-size: 20px;
    }

    .rental-features li,
    .rental-pricing p,
    .tree-features li,
    .christmas-tree-rental .rental-content p {
        font-size: 15px;
    }

    .tree-pricing p,
    .tree-dimensions,
    .tree-colors {
        font-size: 14px;
    }

    .small-text {
        font-size: 13px;
    }

    .rental-content {
        padding: 20px;
    }

    .rental-image img {
        height: 250px;
    }

    .rental-pricing,
    .tree-pricing {
        padding: 15px;
    }

    .tree-model {
        padding: 18px;
    }

    .service-card h3,
    .activity-card h3 {
        font-size: 20px;
    }

    .service-card p,
    .activity-card p,
    .activity-card li {
        font-size: 16px;
    }

    .realization-card {
        padding: 15px;
        min-height: 360px;
    }

    .realization-card img {
        height: 220px;
    }

    .realization-card h3 {
        font-size: 18px;
    }

    .swiper-pagination-custom {
        margin-top: 15px;
        padding: 12px 0;
    }

    .btn {
        padding: 8px 30px;
        font-size: 16px;
    }
    
    .site-header {
        padding: 0.8rem;
    }
}

/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2c3e50;
    color: #fff;
    padding: 15px 20px;
    z-index: 10000;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.cookie-content p {
    margin: 0;
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.btn-cookie {
    background-color: #c0392b;
    color: #fff;
    border: none;
    padding: 10px 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    border-radius: 3px;
    transition: background-color 0.3s ease;
    white-space: nowrap;
}

.btn-cookie:hover {
    background-color: #a93226;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-content p {
        font-size: 13px;
    }
    
    .btn-cookie {
        width: 100%;
        max-width: 200px;
    }
}