* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(to bottom right, #1c1917, #292524, #064e3b);
    color: #e7e5e4;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Cormorant Garamond', serif;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background-image: url('https://images.pexels.com/photos/6216315/pexels-photo-6216315.jpeg?auto=compress&cs=tinysrgb&w=1920');
    background-size: cover;
    background-position: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(28, 25, 23, 0.7), rgba(41, 37, 36, 0.6), rgba(28, 25, 23, 0.8));
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 1rem;
    max-width: 56rem;
}

.hero-icon {
    width: 5rem;
    height: 5rem;
    margin: 0 auto 1.5rem;
    color: #495248;
}

.hero h1 {
    font-size: 6rem;
    color: #f5f5f4;
    margin-bottom: 1rem;
    letter-spacing: 0.05em;
    text-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.hero-slogan {
    font-size: 2rem;
    color: #fbbf24;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #e7e5e4;
    margin-bottom: 3rem;
    line-height: 1.75;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.hero-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, rgba(73, 82, 72, 0.9), rgba(6, 78, 59, 0.8));
    backdrop-filter: blur(12px);
    color: #f5f5f4;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    box-shadow: 0 8px 32px rgba(73, 82, 72, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(73, 82, 72, 0.3);
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
}

.hero-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.hero-button:hover {
    background: linear-gradient(135deg, rgba(73, 82, 72, 0.95), rgba(6, 78, 59, 0.9));
    border-color: rgba(73, 82, 72, 0.6);
    box-shadow: 0 12px 40px rgba(73, 82, 72, 0.6), 0 4px 16px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
    letter-spacing: 0.15em;
}

.hero-button:hover::before {
    left: 100%;
}

.hero-button:active {
    transform: translateY(0);
    box-shadow: 0 6px 24px rgba(73, 82, 72, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
}

/* Rustic Button Styles - shared for all buttons */
.rustic-button {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: linear-gradient(135deg, rgba(73, 82, 72, 0.9), rgba(6, 78, 59, 0.8));
    backdrop-filter: blur(12px);
    color: #f5f5f4;
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    box-shadow: 0 8px 32px rgba(73, 82, 72, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(73, 82, 72, 0.3);
    border-radius: 12px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Cormorant Garamond', serif;
    text-transform: uppercase;
}

.rustic-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.rustic-button:hover {
    background: linear-gradient(135deg, rgba(73, 82, 72, 0.95), rgba(6, 78, 59, 0.9));
    border-color: rgba(73, 82, 72, 0.6);
    box-shadow: 0 12px 40px rgba(73, 82, 72, 0.6), 0 4px 16px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
    letter-spacing: 0.15em;
}

.rustic-button:hover::before {
    left: 100%;
}

.rustic-button:active {
    transform: translateY(0);
    box-shadow: 0 6px 24px rgba(73, 82, 72, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

.scroll-indicator-inner {
    width: 1.5rem;
    height: 2.5rem;
    border: 2px solid rgba(231, 229, 228, 0.5);
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    padding-top: 0.5rem;
}

.scroll-indicator-dot {
    width: 0.25rem;
    height: 0.75rem;
    background: rgba(231, 229, 228, 0.5);
    border-radius: 0.25rem;
}

@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, -10px); }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0px) rotate(0deg); 
    }
    33% { 
        transform: translateY(-10px) rotate(1deg); 
    }
    66% { 
        transform: translateY(-5px) rotate(-1deg); 
    }
}

/* Container */
.container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Section */
section {
    padding: 6rem 1rem;
}

.panel {
    background: linear-gradient(to bottom right, rgba(41, 37, 36, 0.9), rgba(28, 25, 23, 0.9));
    backdrop-filter: blur(8px);
    border-radius: 0.125rem;
    padding: 3rem 4rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(68, 64, 60, 0.3);
}

.section-title {
    font-size: 3rem;
    color: #fbbf24;
    margin-bottom: 2rem;
    text-align: center;
    letter-spacing: 0.05em;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

/* Intro Section */
.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.intro-image {
    width: 100%;
    height: 24rem;
    object-fit: cover;
    border-radius: 0.125rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
}

.intro-text {
    color: #e7e5e4;
    line-height: 1.75;
}

.intro-text p {
    font-size: 1.125rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Services Section */
.services {
    background: linear-gradient(to bottom, transparent, rgba(28, 25, 23, 0.5), transparent);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.services-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: linear-gradient(to bottom right, rgba(41, 37, 36, 0.9), rgba(28, 25, 23, 0.9));
    backdrop-filter: blur(8px);
    padding: 2rem;
    border-radius: 0.125rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(68, 64, 60, 0.3);
    transition: all 0.3s;
}

.service-card:hover {
    border-color: rgba(5, 150, 105, 0.3);
    box-shadow: 0 25px 50px rgba(6, 78, 59, 0.2);
}

.service-image {
    width: 100%;
    height: 14rem;
    object-fit: cover;
    border-radius: 0.125rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
}

.service-title {
    font-size: 1.5rem;
    color: #fbbf24;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.service-description {
    color: #d6d3d1;
    line-height: 1.75;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
}

.contact-icon {
    width: 1.5rem;
    height: 1.5rem;
    color: #495248;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.contact-item h3 {
    font-size: 1.25rem;
    color: #fbbf24;
    margin-bottom: 0.5rem;
    font-weight: 800;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-item p {
    color: #d6d3d1;
    line-height: 1.75;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-note {
    padding-top: 1.5rem;
    color: #d6d3d1;
    font-style: italic;
    line-height: 1.75;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.map-container {
    background: rgba(28, 25, 23, 0.5);
    border-radius: 0.125rem;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(68, 64, 60, 0.3);
    height: 100%;
    min-height: 400px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    min-height: 400px;
}

/* Footer */
footer {
    padding: 3rem 1rem;
    border-top: 1px solid rgba(68, 64, 60, 0.3);
    text-align: center;
}

.footer-icon {
    width: 3rem;
    height: 3rem;
    margin: 0 auto 1.5rem;
    color: #495248;
}

footer h3 {
    font-size: 1.5rem;
    color: #e7e5e4;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

footer .slogan {
    color: #6b7563;
    margin-bottom: 1.5rem;
    letter-spacing: 0.2em;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

footer .copyright {
    color: #a8a29e;
    font-size: 0.875rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 3.75rem;
    }

    .hero-slogan {
        font-size: 1.5rem;
    }

    .hero-subtitle {
        font-size: 1.25rem;
    }

    .section-title {
        font-size: 2.25rem;
    }

    .intro-grid,
    .services-grid,
    .services-grid-2,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .panel {
        padding: 2rem;
    }

    /* Hide floating date bubbles on mobile */
    .floating-date-desktop {
        display: none !important;
    }
}

/* Icons SVG */
.icon {
    display: inline-block;
    vertical-align: middle;
}

/* Back to Previous Section Button */
.back-to-top {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: linear-gradient(135deg, rgba(73, 82, 72, 0.9), rgba(6, 78, 59, 0.8));
    backdrop-filter: blur(12px);
    color: #f5f5f4;
    text-decoration: none;
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 32px rgba(73, 82, 72, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(73, 82, 72, 0.3);
    transition: all 0.4s ease;
    font-size: 1.2rem;
    font-weight: bold;
    z-index: 20;
}

.back-to-top:hover {
    background: linear-gradient(135deg, rgba(73, 82, 72, 0.95), rgba(6, 78, 59, 0.9));
    border-color: rgba(73, 82, 72, 0.6);
    box-shadow: 0 12px 40px rgba(73, 82, 72, 0.6), 0 4px 16px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}

.back-to-top:active {
    transform: translateY(0);
    box-shadow: 0 6px 24px rgba(73, 82, 72, 0.4), 0 2px 8px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 1rem;
        right: 1rem;
        width: 2.5rem;
        height: 2.5rem;
        font-size: 1rem;
    }
}

/* Accessibility Improvements */
.skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: #000;
    color: #fff;
    padding: 8px;
    text-decoration: none;
    border-radius: 4px;
    z-index: 1000;
    font-size: 0.875rem;
    transition: top 0.3s;
}

.skip-link:focus {
    top: 6px;
}

/* Enhanced Focus Styles */
*:focus {
    outline: 3px solid #495248;
    outline-offset: 2px;
}

.hero-button:focus,
.rustic-button:focus,
.back-to-top:focus {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

/* Improved Text Contrast */
.service-description {
    color: #e7e5e4; /* Improved from #d6d3d1 */
    line-height: 1.75;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-item p {
    color: #e7e5e4; /* Improved from #d6d3d1 */
    line-height: 1.75;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.contact-note {
    padding-top: 1.5rem;
    color: #e7e5e4; /* Improved from #d6d3d1 */
    font-style: italic;
    line-height: 1.75;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Loading States */
.image-loading {
    background: linear-gradient(90deg, rgba(73, 82, 72, 0.1) 0%, rgba(73, 82, 72, 0.2) 50%, rgba(73, 82, 72, 0.1) 100%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Better Button States */
.hero-button:disabled,
.rustic-button:disabled,
.back-to-top:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .hero-button,
    .rustic-button,
    .back-to-top {
        border: 3px solid #495248;
    }
}

/* Reduced Motion Support */
@media (prefers-reduced-motion: reduce) {
    .hero-button::before,
    .rustic-button::before {
        transition: none;
    }
    
    .scroll-indicator,
    .back-to-top {
        animation: none;
    }
    
    .floating-date {
        animation: none;
    }
}

/* Gallery specific styles */
.gallery-categories .services-grid,
.gallery-thumbs .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
}

.gallery-thumbs .service-card,
.gallery-categories .service-card {
    background: transparent;
    padding: 0.5rem;
}

.gallery-thumbs .service-image,
.gallery-categories .service-image {
    width: 100%;
    height: 14rem;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer; /* show hand when hovering thumbnails */
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.gallery-lightbox .lb-inner{ position: relative; max-width: 90vw; max-height: 90vh; }
.gallery-lightbox .lb-media img{ max-width: 100%; max-height: 80vh; display: block; margin: 0 auto; }
.gallery-lightbox .lb-media img{ cursor: pointer; }
.gallery-lightbox .lb-close, .gallery-lightbox .lb-prev, .gallery-lightbox .lb-next{ position: absolute; top: 10px; background: rgba(255,255,255,0.06); border: none; color: #fff; padding: 0.5rem 0.8rem; border-radius: 6px; cursor: pointer; }
.gallery-lightbox .lb-prev{ left: -60px; top: 50%; transform: translateY(-50%); }
.gallery-lightbox .lb-next{ right: -60px; top: 50%; transform: translateY(-50%); }
.gallery-lightbox .lb-close{ right: 10px; }

@media (max-width: 768px){
  .gallery-lightbox .lb-prev, .gallery-lightbox .lb-next{ display: none; }
}

/* Compact header for gallery pages */
.gallery-header{ padding: 2.25rem 0; background: linear-gradient(to bottom right, rgba(28,25,23,0.9), rgba(41,37,36,0.9)); }
.gallery-header .hero-content{ max-width: 72rem; margin: 0 auto; text-align: left; padding: 0 1rem; }
.gallery-header .gallery-title{ font-family: 'Cormorant Garamond', serif; font-size: 2.25rem; color: #f5f5f4; margin: 0 0 0.25rem 0; }
.gallery-header .hero-slogan{ font-size: 1rem; color: #fbbf24; margin-bottom: 0.75rem; }
.gallery-header .hero-button{ padding: 0.6rem 1rem; font-size: 0.95rem; }

/* Mobile hamburger nav for gallery headers */
.nav-toggle{
    position: fixed;
    top: 1rem;
    right: 1rem;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.06);
    color: #fff;
    font-size: 1.5rem;
    padding: 0.5rem 0.75rem;
    border-radius: 8px;
    z-index: 1200;
}

.gallery-nav{
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1rem;
}
/* Prevent default blue link color for inline nav; use site colors */
.gallery-nav a,
.hero .gallery-nav a,
.gallery-hero .gallery-nav a{
    color: #e7e5e4;
    text-decoration: none;
    padding: 0.25rem 0.5rem;
}
.gallery-nav a:visited{ color: #e7e5e4; }
.gallery-nav a:hover,
.hero .gallery-nav a:hover,
.gallery-hero .gallery-nav a:hover{ color: #fbbf24; text-decoration: none; }

/* Overlay-specific larger menu color/size */
.hero.nav-open .gallery-nav a,
.gallery-hero.nav-open .gallery-nav a{
    color: #ffffff;
    font-size: 1.5rem;
}
.hero.nav-open .gallery-nav a:visited,
.gallery-hero.nav-open .gallery-nav a:visited{ color: #ffffff; }

@media (max-width: 768px){
    .nav-toggle{ display: block; }
    .gallery-nav{ display: none; flex-direction: column; gap: 0.5rem; }
    /* when open, show nav as a full-screen overlay */
    .hero.nav-open .gallery-nav,
    .gallery-hero.nav-open .gallery-nav{
        display: flex;
        position: fixed;
        inset: 0;
        background: rgba(8,8,8,0.92);
        z-index: 60;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.25rem;
    }
    .gallery-nav a{ color: #fff; font-size: 1.25rem; padding: 0.5rem 1rem; text-decoration:none; }
    .gallery-hero{ height: auto; padding: 1.5rem 0; }
    .gallery-hero .hero-content{ text-align: center; }
    .gallery-hero .hero-icon{ margin: 0 auto 0.75rem; }
    .gallery-hero .gallery-title{ font-size: 1.75rem; }
    .gallery-hero .hero-slogan{ font-size: 1rem; }
    /* hide large hero buttons on small screens when using hamburger */
    .hero .hero-button{ display: none; }
}

@media (min-width: 769px){
    /* Keep a small hamburger on desktop instead of the unstyled links */
    .nav-toggle{ display: block; top: 1.25rem; right: 2rem; font-size: 1.25rem; padding: 0.45rem 0.6rem; border-radius: 8px; background: rgba(0,0,0,0.35); border: 1px solid rgba(255,255,255,0.06); }
    /* Hide inline nav links on desktop; use overlay when nav-open */
    .gallery-nav{ display: none; }
    .hero.nav-open .gallery-nav,
    .gallery-hero.nav-open .gallery-nav{
        display: flex;
        position: fixed;
        inset: 0;
        background: rgba(8,8,8,0.92);
        z-index: 60;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 1.25rem;
    }
}

/* Wolt link styling in contact section */
.wolt-link{
    color: #fbbf24; /* site accent */
    text-decoration: none;
    font-weight: 600;
}
.wolt-link:hover,
.wolt-link:focus{
    color: #ffd86b;
    text-decoration: underline;
}

/* Button-style Wolt action */
.wolt-button{
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #fbbf24;
    color: #222;
    padding: 0.35rem 0.7rem;
    border-radius: 0.5rem;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}
.wolt-button .wolt-icon{
    flex: 0 0 auto;
    width: 1.15rem;
    height: 1.15rem;
}
.wolt-button:hover,
.wolt-button:focus{
    background: #ffd86b;
    color: #111;
}


