/* ===== RESET & ROOT ===== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root { 
    --primary-color: #2c3e50; 
    --secondary-color: #e74c3c; 
    --text-light: #ecf0f1; 
    --bg-light: #f8f9fa; 
    --bg-dark: #1a1a1a; 
    --transition: all 0.3s ease; 
}

body { 
    font-family: 'Lato', sans-serif; 
    line-height: 1.6; 
    color: #2c3e50; 
    overflow-x: hidden; 
}

h1, h2, h3 { 
    font-family: 'Playfair Display', serif; 
    font-weight: 700; 
}

/* ===== SERVICE NOTICE ===== */
.service-notice {
    background: #fff3cd;
    border-top: 3px solid #ffc107;
    border-bottom: 3px solid #ffc107;
    padding: 40px 20px;
}

.notice-text {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    font-size: 1.2rem;
    line-height: 1.8;
    color: #856404;
    font-weight: 500;
}

/* ===== CONTACT FORM ===== */
.contact-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.contact-intro {
    text-align: center;
    margin: 0 auto 25px auto;
    max-width: 600px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-form label {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-family: 'Lato', sans-serif;
    transition: border-color 0.3s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form button {
    padding: 15px 40px;
    background: var(--secondary-color);
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin: 10px auto 0 auto;
    width: auto;
}

.contact-form button:hover {
    background: #c0392b;
    transform: translateY(-3px);
}

/* ===== LAYOUT ===== */
.container { 
    max-width: 1400px; 
    margin: 0 auto; 
    padding: 0 20px; 
}

/* ===== HEADER ===== */
.header { 
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%); 
    color: var(--text-light); 
    padding: 20px 20px; 
    text-align: center; 
    position: relative;
}

.logo-container { 
    margin-bottom: 0; 
}

.logo { 
    width: 300px;
    opacity: 0;
    transform: translateX(-150px) rotate(-180deg);
    animation: rollInFromLeft 1.5s ease-out forwards;
	will-change: transform, opacity;
}

.site-title { 
    font-size: 3.5rem; 
    margin: 0; 
    letter-spacing: 2px; 
}

.tagline { 
    font-size: 1.3rem; 
    font-weight: 300; 
    opacity: 0.9; 
    margin: 0; 
}

.subtitle { 
    font-size: 1.1rem; 
    font-weight: 300; 
    opacity: 0.8; 
    margin: 0; 
}

/* ===== NAVIGATION ===== */
header nav {
    margin-top: 15px;
}

header nav ul {
    list-style: none;
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 0;
    margin: 0;
    padding: 0;
}

header nav ul li {
    display: inline-block;
    margin: 0;
    padding: 0 15px;
    border-right: 2px solid rgba(255, 255, 255, 0.5);
}

header nav ul li:last-child {
    border-right: none;
}

header nav ul li a {
    color: #FFFFFF;

    text-decoration: none;
    font-weight: 400;
    font-size: 16px;
    transition: opacity 0.3s ease;
}

header nav ul li a:hover {
    opacity: 0.7;
}

/* ===== HERO SECTION ===== */
.hero { 
    height: 70vh; 
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4)), url('https://provisionpictures.com/Images/085.webp') center/cover; 
    display: flex; 
    align-items: flex-end;
    padding-bottom: 60px;
    justify-content: center; 
    color: white; 
}

.hero-overlay {
    text-align: center;
}

.hero-title { 
    font-size: 4rem; 
    margin-bottom: 8px; 
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5); 
}

.hero-text { 
    font-size: 1.5rem; 
    margin-bottom: 10px; 
    max-width: 800px; 
    margin-left: auto; 
    margin-right: auto; 
}

.cta-button { 
    display: inline-block; 
    padding: 15px 40px; 
    background: var(--secondary-color); 
    color: white; 
    text-decoration: none; 
    border-radius: 50px; 
    font-weight: 600; 
    transition: var(--transition); 
}

.cta-button:hover { 
    background: #c0392b; 
    transform: translateY(-3px); 
}

/* ===== STATS SECTION ===== */
.stats { 
    background: var(--bg-light); 
    padding: 80px 20px; 
}

.stats .container { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); 
    gap: 40px; 
    text-align: center; 
}

.stat-item { 
    padding: 30px; 
    background: white; 
    border-radius: 10px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
}

.stat-number { 
    font-size: 4rem; 
    color: var(--secondary-color); 
    font-family: 'Playfair Display', serif; 
}

.stat-label { 
    font-size: 1.2rem; 
    color: var(--primary-color); 
    margin-top: 10px; 
    text-transform: uppercase; 
    letter-spacing: 2px; 
    font-weight: 600; 
}

.stat-sublabel { 
    font-size: 1rem; 
    color: #7f8c8d; 
    margin-top: 5px; 
    letter-spacing: 1px; 
}

/* ===== ABOUT SECTION ===== */
.about { 
    padding: 100px 20px; 
}

.section-title { 
    font-size: 3rem; 
    text-align: center; 
    margin-bottom: 10px; 
    color: var(--primary-color); 
}

.about-text { 
    font-size: 1.3rem; 
    line-height: 2; 
    max-width: 900px; 
    margin: 0 auto; 
    text-align: center; 
}

/* ===== GALLERY SECTION ===== */
.gallery-section { 
    padding: 20px 20px; 
    background: var(--bg-light); 
}

.gallery-grid { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); 
    gap: 25px; 
}

.gallery-item { 
    position: relative; 
    overflow: hidden; 
    border-radius: 10px; 
    box-shadow: 0 5px 15px rgba(0,0,0,0.1); 
    cursor: pointer; 
    transition: var(--transition); 
    aspect-ratio: 1; 
}

.gallery-item img { 
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease, object-fit 0.6s ease;
    background: #f0f0f0;
    min-height: 250px;
}

.gallery-item:hover { 
    transform: translateY(-5px); 
    box-shadow: 0 10px 30px rgba(0,0,0,0.2); 
}

.gallery-item:hover img { 
    transform: scale(1);
    object-fit: contain;
    background-color: #000;
}

.gallery-overlay { 
    position: absolute; 
    top: 0; 
    left: 0; 
    right: 0; 
    bottom: 0; 
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.8) 100%); 
    display: flex; 
    align-items: flex-end; 
    justify-content: center; 
    padding: 20px; 
    opacity: 0; 
    transition: var(--transition); 
}

.gallery-item:hover .gallery-overlay { 
    opacity: 1; 
}

.gallery-number { 
    color: white; 
    font-size: 1.5rem; 
    font-weight: 700; 
}

.gallery-item img:not(.loaded) {
    opacity: 0.5;
}

.gallery-item img.loaded {
    opacity: 1;
    transition: opacity 0.3s ease;
}

/* ===== LIGHTBOX ===== */
.lightbox { 
    display: none; 
    position: fixed; 
    z-index: 9999; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    background: #000;
}

.lightbox.active { 
    display: flex; 
    align-items: center; 
    justify-content: center; 
}

.lightbox-content { 
    max-width: 90%; 
    max-height: 90%; 
    object-fit: contain; 
}

.lightbox-close, 
.lightbox-prev, 
.lightbox-next { 
    position: absolute; 
    color: white; 
    font-size: 3rem; 
    cursor: pointer; 
    background: rgba(255,255,255,0.1); 
    width: 60px; 
    height: 60px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    border-radius: 50%; 
    border: none;
}

.lightbox-close { 
    top: 30px; 
    right: 30px; 
}

.lightbox-prev { 
    left: 30px; 
    top: 50%; 
    transform: translateY(-50%); 
}

.lightbox-next { 
    right: 30px; 
    top: 50%; 
    transform: translateY(-50%); 
}

/* ===== FOOTER ===== */
.footer { 
    background: linear-gradient(135deg, #2c3e50 0%, #1a2530 100%); 
    color: white; 
    padding: 20px 20px 30px; 
    text-align: center; 
    border-top: 4px solid var(--secondary-color); 
}

.footer-content { 
    max-width: 600px; 
    margin: 0 auto; 
}

.footer-logo { 
    width: 300px; 
    margin-bottom: 0; 
}

.footer-title { 
    font-size: 2.5rem; 
    font-family: 'Playfair Display', serif; 
    margin: 0; 
    color: white; 
    font-weight: 700; 
}

.footer-subtitle { 
    font-size: 1.3rem; 
    color: #ecf0f1; 
    margin: 0; 
    font-weight: 400; 
}

.footer-years { 
    font-size: 1.5rem; 
    color: var(--secondary-color); 
    margin: 0; 
    font-weight: 600; 
    letter-spacing: 2px; 
}

.footer-tagline { 
    font-size: 1.2rem; 
    color: #bdc3c7; 
    margin: 0 0 15px 0; 
    font-style: italic; 
}

.footer-address {
    font-style: normal;
    line-height: 1.8;
    margin: 15px 0;
}

.back-to-top { 
    display: inline-block; 
    margin-top: 15px; 
    padding: 14px 35px; 
    background: var(--secondary-color); 
    color: white; 
    text-decoration: none; 
    border-radius: 50px; 
    font-weight: 600; 
    font-size: 1.1rem; 
    transition: var(--transition); 
}

.back-to-top:hover { 
    background: #c0392b; 
    transform: translateY(-3px); 
    box-shadow: 0 6px 20px rgba(231, 76, 60, 0.4); 
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInDown { 
    from { 
        opacity: 0; 
        transform: translateY(-30px); 
    } 
    to { 
        opacity: 1; 
        transform: translateY(0); 
    } 
}
/* ===== LOGO ROLL-IN ANIMATIONS ===== */
@keyframes rollInFromLeft {
  0% {
    opacity: 0;
    transform: translateX(-150px) rotate(-180deg);
  }
  70% {
    opacity: 1;
    transform: translateX(10px) rotate(30deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}

@keyframes rollInFromRight {
  0% {
    opacity: 0;
    transform: translateX(-150px) rotate(-180deg);
  }
  70% {
    opacity: 1;
    transform: translateX(10px) rotate(30deg);
  }
  100% {
    opacity: 1;
    transform: translateX(0) rotate(0deg);
  }
}
/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .site-title { font-size: 2.5rem; } 
    .hero-title { font-size: 2.5rem; } 
    .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(250px, 1fr)); } 
    .footer-title { font-size: 2rem; } 
    .logo { width: 220px; } 
    .footer-logo { width: 220px; }
    
    /* Stack nav items vertically in single column */
    header nav {
        margin-top: 20px;
        display: block;
        width: 100%;
    }
    
    header nav ul {
        flex-direction: column;
        gap: 0;
        display: flex;
        align-items: center;
        width: 100%;
    }
    
    header nav ul li {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.3);
        padding: 12px 0;
        display: block;
        width: 100%;
        text-align: center;
    }
    
    header nav ul li:last-child {
        border-bottom: none;
    }
    
    header nav ul li a {
        font-size: 18px;
        display: block;
        padding: 5px 0;
    }
}
/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background: var(--primary-color);
  color: var(--text-light);
  text-align: center;
  padding: 20px 10px;
  z-index: 99999; /* raised to ensure visibility */
  display: none;
  font-size: 1rem;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
  animation: fadeInUp 0.6s ease forwards;
  /* ✅ ensures banner floats above keyboard & bottom bars */
  padding-bottom: calc(20px + env(safe-area-inset-bottom));
}

.cookie-banner p {
  margin-bottom: 10px;
  font-family: 'Lato', sans-serif;
}

.cookie-banner button {
  margin: 0 10px;
  padding: 10px 22px;
  border: none;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  font-family: 'Lato', sans-serif;
  transition: var(--transition);
}

#accept-cookies {
  background-color: var(--secondary-color);
  color: white;
}

#accept-cookies:hover {
  background-color: #c0392b;
}

#reject-cookies {
  background-color: #555;
  color: white;
}

#reject-cookies:hover {
  background-color: #333;
}
/* ===== FADE-IN ANIMATION FOR COOKIE BANNER ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cookie-banner {
  animation: fadeInUp 0.6s ease forwards;
}
@media (max-width: 480px) { 
    .gallery-grid { grid-template-columns: 1fr; } 
}

@media (prefers-reduced-motion: no-preference) {
  .logo {
    animation: rollInFromLeft 1.5s ease-out forwards;
    animation-delay: 0.3s;
  }
}
@media (max-width: 768px) and (prefers-reduced-motion: no-preference) {
  .logo {
    width: 220px;
    animation: rollInFromLeft 1.5s ease-out forwards;
    animation-delay: 0.3s;
  }
}