* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, Helvetica, sans-serif;
    color: #fff;
    background: #111;
}

/* Navbar - transparent, fixed on top */
.navbar {
    position:relative;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    background: transparent;           /* No background */
    transition: background 0.4s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.7);    /* Optional: darkens on scroll */
}

.nav-logo .logo-text {
    font-size: 1.8rem;
    color: #fff;
    text-decoration: none;
}

.logo-image {
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.6));
}

/* 1. Make the entire navbar fixed (recommended – keeps menu/hamburger in place too) */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;           /* starts fully see-through */
    z-index: 2000;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.75);   /* semi-dark background */
    backdrop-filter: blur(10px);       /* beautiful glass/blur effect (supported on most modern browsers) */
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);  /* subtle shadow for depth */
}

/* Optional: Add a background when scrolled down (looks professional) */
.navbar.scrolled {
    background: rgba(0, 0, 0, 0.85);   /* semi-dark – adjust opacity */
    backdrop-filter: blur(8px);        /* nice modern blur effect if browser supports */
}

/* 2. Logo stays inside the fixed navbar – no extra position needed */
.nav-logo {
    /* Remove any position: absolute / top / left you might still have here */
    flex-shrink: 0;
}


/* Mobile adjustments */
@media (max-width: 900px) {
    .navbar {
        padding: 10px 4%;
    }
    .logo-image {
        width: 120px;
        max-height: 120px;
    }
}

.logo-image {
    width: 160px;                    /* your current size – keep or adjust */
    height: auto;
    max-height: 150px;
    display: block !important;
    image-rendering: -webkit-optimize-contrast;  /* Chrome/Edge/Safari – makes edges sharp */
    image-rendering: crisp-edges;                /* Firefox + fallback */
    image-rendering: pixelated;                  /* optional – very sharp for vector-like logos */
    -webkit-font-smoothing: antialiased;         /* helps if any text in logo */
    -moz-osx-font-smoothing: grayscale;
}

.nav-menu {
    list-style: none;
    display: flex;
    gap: 2.5rem;
}

.nav-link {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #ddd;
}

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.nav-toggle span {
    width: 28px;
    height: 3px;
    background: #fff;
    transition: all 0.3s;
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }

/* Hero Slideshow - full viewport height */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
}

.hero-slideshow {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.slide.active {
    opacity: 1;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);   /* Dark overlay for readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 5%;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    max-width: 700px;
}

.hero-buttons .btn {
    display: inline-block;
    padding: 14px 32px;
    margin: 0 12px;
    text-decoration: none;
    font-size: 1.2rem;
    border-radius: 6px;
    transition: all 0.3s;
}

.btn.primary {
    background: #d4a017;
    color: #000;
}

.btn.primary:hover {
    background: #b58900;
}

.btn.secondary {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

.btn.secondary:hover {
    background: rgba(255,255,255,0.2);
}

/* Featured Products */
.featured-products {
    padding: 80px 5%;
    background: #f8f8f8;
    color: #333;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
}

.slogan {
    text-align: center;
    margin-bottom: 60px;
}

.slogan h2 {
    font-size: 2.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    aspect-ratio: 4 / 3;
}

.product-card img,
.product-card video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}

.product-card:hover img,
.product-card:hover video {
    transform: scale(1.08);
}

.overlay-text {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0,0,0,0.5);
    color: white;
    font-size: 2rem;
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.4s;
}

.product-card:hover .overlay-text {
    opacity: 1;
}

/* Responsive */
@media (max-width: 900px) {
    .nav-menu {
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100% - 80px);
        background: rgba(0,0,0,0.95);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        transform: translateY(-100%);
        transition: transform 0.4s ease;
        z-index: 999;
    }

    .nav-menu.active {
        transform: translateY(0);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-content h1 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.3rem;
    }
}

@media (max-width: 600px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-buttons .btn {
        padding: 12px 24px;
        font-size: 1rem;
        margin: 10px;
    }
}

.blog-ticker {
    overflow: hidden; /* hides overflow during animation */
    
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
}

.ticker-track {
    display: flex;
    animation: slideRightToLeft 40s linear infinite; /* 40s = speed – adjust lower = faster */
    width: max-content; /* important for seamless flow */
}

.blog-tile {
    flex: 0 0 320px; /* card width – adjust for your design (e.g. 280–350px) */
    margin-right: 1.5rem; /* space between cards */
    background: rgb(200, 189, 189);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(218, 214, 214, 0.08);
    transition: transform 0.3s ease;
}

.ticker-track:hover .blog-tile {
    animation-play-state: paused; /* pause on hover */
}

.blog-tile:hover {
    transform: translateY(-8px);
}

.blog-tile img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.blog-tile-content {
    padding: 1.25rem;
    text-align: left;
}

.blog-tile h5 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.meta {
    font-size: 0.85rem;
    color: #2f5373;
    margin-bottom: 0.75rem;
}

.blog-tile p {
    font-size: 0.95rem;
    color: #555;
    margin-bottom: 1rem;
}

.btn-read {
    background: #0f172a; /* your navy blue */
    color: white;
    border: none;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.btn-read:hover {
    background: #1a2a4a; /* darker navy on hover */
}

/* The infinite animation */
@keyframes slideRightToLeft {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%); /* -50% because we duplicated cards */
    }
}

/* Mobile – make cards narrower & slower if needed */
@media (max-width: 768px) {
    .blog-tile {
        flex: 0 0 280px;
    }

    .ticker-track {
        animation-duration: 50s; /* slower on mobile for readability */
    }
}



.footer {
  background: #000000;
  color: #cccccc;
  padding: 60px 0 40px;
}

.footer-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.red-underline {
  width: 60px;
  height: 3px;
  background: #dc3545;
  margin: 0 auto;
}

.footer a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer a:hover {
  color: #ffffff;
}

.social a {
  font-size: 1.8rem;
  color: #cccccc;
  transition: color 0.25s;
}

.social a:hover {
  color: #ffffff;
}

.whatsapp-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  background: #25D366;
  color: white;
  border-radius: 50%;
  font-size: 3.8rem;
  text-decoration: none;
  transition: all 0.2s;
}

.whatsapp-icon:hover {
  background: #20b858;
  transform: scale(1.08);
}

/* Mobile adjustments */
@media (max-width: 991px) {
  .red-underline {
    margin-left: auto;
    margin-right: auto;
  }

  .social {
    justify-content: center;
    margin: 1.5rem 0;
  }

  .whatsapp-icon {
    width: 90px;
    height: 90px;
    font-size: 3.5rem;
  }
}


.product-grid {
    background: #f8f9fa;
    padding: 60px 0;
}

.product-grid h2 {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #000000;
}

.product-tile {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    height: 520px;                    /* Fixed total height for alignment */
    display: flex;
    flex-direction: column;
    text-align: center;
    margin-bottom: 2rem;
}

.product-tile:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.tile-image {
    height: 320px;                    /* Fixed image area height – all images same size */
    width: 100%;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f9f9f9;              /* light background for images that don't fill */
}

.tile-image img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;              /* shows full image – no cropping */
    object-position: center;
    transition: transform 0.5s ease;
}

.tile-image {
    width: 100%;
    height: 260px;                 /* Adjust this height as you like */
    overflow: hidden;              /* Important for clean cropping */
    border-radius: 12px;           /* Nice rounded corners */
    background: #f1f1f1;           /* Fallback color */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* Optional soft shadow */
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;             /* Crops nicely while filling the box */
    object-position: center;       /* Centers the most important part (e.g. the door) */
    display: block;
    transition: transform 0.4s ease; /* Optional hover zoom effect */
}

/* Optional: subtle hover zoom for better UX */
.product-img:hover {
    transform: scale(1.08);
}

.product-tile {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.09);
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.product-tile:hover {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    transform: translateY(-8px);
}

/* Image with nice consistent crop */
.tile-image {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f8f9fa;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.product-img:hover {
    transform: scale(1.08);
}

/* Content */
.tile-content {
    padding: 18px 16px;
    text-align: center;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.tile-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 8px;
}

.tile-tags {
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 12px;
}

.tile-price {
    font-size: 1.22rem;
    font-weight: 700;
    color: #27ae60;
    margin-bottom: 18px;
}

.btn-quote {
    margin-top: auto;
    width: 100%;
    padding: 14px;
    background: #007bff;
    color: white;
    text-align: center;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-quote:hover {
    background: #0056b3;
    transform: translateY(-2px);
}


/* Push main content down so it doesn't hide under fixed navbar */
.fixed-navbar main {
    padding-top: 90px !important;   /* adjust this number = your navbar height + breathing room */
}

.blog-section {
    background: #f8f9fa;
}

.blog-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.blog-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.blog-image {
    height: 240px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-image img {
    transform: scale(1.08);
}

.blog-content {
    padding: 1.75rem 1.5rem 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1rem;
}

.blog-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: #000;
}

.blog-excerpt {
    font-size: 1rem;
    color: #444;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.btn-read-more {
    background: #0f172a;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.25s;
    align-self: flex-start;
}

.btn-read-more:hover {
    background: #1a2a4a;
    transform: translateY(-3px);
}

.blog-hero {
    min-height: 50vh;
}

.blog-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-10px);
}

.blog-card img {
    height: 220px;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 1.5rem;
}

.blog-card .card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #000;
}

.btn-outline-dark {
    border-color: #0f172a;
    color: #0f172a;
}

.btn-outline-dark:hover {
    background: #0f172a;
    color: white;
}


.gallery-hero {
    min-height: 60vh;
}

.gallery-tile {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
}

.gallery-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-tile:hover img {
    transform: scale(1.12);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    color: white;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.gallery-tile:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h6 {
    font-size: 1.25rem;
    margin-bottom: 0.4rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    margin: 0;
    opacity: 0.9;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.gallery-tile:hover .play-icon {
    opacity: 1;
}

/* Masonry layout – all projects together, no categories */
.masonry {
    column-count: 1;
    column-gap: 1.5rem;
}

@media (min-width: 576px) {
    .masonry {
        column-count: 2;
    }
}

@media (min-width: 992px) {
    .masonry {
        column-count: 3;
    }
}

@media (min-width: 1200px) {
    .masonry {
        column-count: 4;
    }
}

.gallery-item {
    break-inside: avoid;
    margin-bottom: 1.5rem;
}

.text-muted {
    --bs-text-opacity: 1;
    color: #ffffff !important;
}


/* Target using the existing section ID */
#blog-posts .text-muted {
    color: #555555 !important;
}

#blog-posts .card-text.text-muted {
    color: #666666 !important;
}

.bg-light {
    --bs-bg-opacity: 1;
    background-color: rgba(195, 195, 195, 0.8) !important;
}

.bg-white {
    --bs-bg-opacity: 1;
    background-color: #0f172a !important;
}

.logo-image {
    height: 90px;
    object-fit: contain;
}

/* Space after fixed navbar – apply to main content */
main {
    padding-top: 90px;          /* 90px is usually perfect – matches a ~70–80px navbar + breathing room */
}

/* Optional: extra space only on pages with hero (like home or doors) */
.hero, .product-grid, .blog-teaser, .gallery-hero, .about-hero {
    margin-top: 20px;           /* additional small gap if needed */
}


/* Contact Hero */
.contact-hero {
    background: #2C1F14;           /* Deep Espresso Brown */
    color: #F5F0E8;
    padding: 140px 20px 100px;
    text-align: center;
}

.contact-hero h1 {
    font-size: 52px;
    color: #D4A017;                /* Warm Gold */
    margin-bottom: 16px;
}

.contact-hero p {
    font-size: 22px;
    max-width: 720px;
    margin: 0 auto;
    color: #E8D9C0;
}

/* Contact Grid */
.contact-content {
    padding: 80px 20px 100px;
    background: #FAF6F0;           /* Very light cream */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Left Dark Panel */
.contact-info {
    background: #3F2A1D;           /* Rich Chocolate Brown */
    color: #F5F0E8;
    padding: 50px 45px;
    border-radius: 12px;
}

.contact-info h2 {
    color: #D4A017;
    margin-bottom: 45px;
    font-size: 32px;
}

.info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 38px;
}

.info-item i {
    font-size: 32px;
    color: #D4A017;
    margin-top: 4px;
}

/* WhatsApp Button */
.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: #25D366;
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
}

.whatsapp-btn:hover {
    background: #20ba5a;
    transform: translateY(-3px);
}

/* Right Form Panel */
.contact-form {
    background: #FAF6F0;           /* Cream */
    padding: 50px 45px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(44, 31, 20, 0.15);
}

.contact-form h2 {
    color: #2C1F14;
    margin-bottom: 35px;
}

.form-group label {
    color: #2C1F14;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #D4C9B8;
    border-radius: 8px;
    background: white;
    font-size: 16px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #D4A017;
    outline: none;
}

/* Submit Button */
.submit-btn {
    background: #D4A017;
    color: #2C1F14;
    padding: 16px;
    font-size: 18px;
    font-weight: bold;
    border: none;
    border-radius: 8px;
    width: 100%;
    cursor: pointer;
    transition: 0.3s;
}

.submit-btn:hover {
    background: #B8860B;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}


/* ===================== THANK YOU PAGE ===================== */
.thank-you-section {
    background: #FAF6F0;
    min-height: 80vh;
    display: flex;
    align-items: center;
    padding: 100px 20px;
}

.thank-you-card {
    background: white;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 15px 40px rgba(44, 31, 20, 0.15);
}

.success-icon {
    font-size: 80px;
    color: #D4A017;
    margin-bottom: 25px;
}

.thank-you-card h1 {
    color: #2C1F14;
    font-size: 42px;
    margin-bottom: 20px;
}

.thank-you-card p {
    font-size: 19px;
    color: #3F2A1D;
    margin-bottom: 25px;
}

.thank-you-info {
    background: #F5F0E8;
    padding: 20px;
    border-radius: 10px;
    margin: 30px 0;
    font-size: 17px;
}

.back-home-btn {
    display: inline-block;
    background: #D4A017;
    color: #ffffff;
    padding: 16px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s;
}

.back-home-btn:hover {
    background: #B8860B;
    transform: translateY(-4px);
}

/* ===================== BLOG ===================== */
.blog-hero {
    min-height: 75vh;
    position: relative;
}

.blog-card {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    height: 100%;
}

.blog-card:hover {
    transform: translateY(-8px);
}

.blog-card img {
    height: 220px;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.blog-card .card-title {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: #000000;
}

.blog-card .card-text {
    flex-grow: 1;
}

.btn-outline-dark {
    border-color: #0f172a;
    color: #0f172a;
}

.btn-outline-dark:hover {
    background: #0f172a;
    color: white;
}

/* ===================== PRODUCT IMAGE ===================== */

.tile-image {
    width: 100%;
    aspect-ratio: 4 / 3;           /* Change to 16/9, 5/4, 1/1, etc. */
    overflow: hidden;
    border-radius: 12px;
}   /* Light background in case image fails to load */


.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;       /* This is the magic */
    object-position: center; /* Centers the image */
    display: block;
}

.tile-image {
    width: 100%;
    height: 240px;                    /* Mobile */
    overflow: hidden;
    border-radius: 8px;
}

@media (min-width: 768px) {
    .tile-image {
        height: 280px;                /* Tablets & larger */
    }
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: #000000;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
    padding: 18px 20px;
    z-index: 9999;
    display: none;
    border-top: 4px solid #007bff;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    text-align: center;
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
    }
}

