/* Hero Gallery - Full Screen */
.hero-gallery {
    position: relative;
    height: 100vh;
    min-height: 800px;
    overflow: hidden;
    background: transparent;
    /*background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);*/
}

.gallery-container {
    position: relative;
    height: 100%;
    width: 100%;
}

.gallery-slides {
    position: relative;
    height: 100%;
    width: 100%;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.gallery-slide.active {
    opacity: 1;
}

.gallery-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.3) 0%,
        rgba(0,0,0,0.1) 50%,
        rgba(0,0,0,0.4) 100%
    );
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.hero-content {
    text-align: center;
    color: white;
    max-width: 1200px;
    padding: 0 20px;
    width: 100%;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 5rem;
    font-weight: 400;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 12px rgba(0,0,0,0.6);
    letter-spacing: -0.02em;
    line-height: 1.1;
    white-space: nowrap;
}

.hero-title .welcome-line {
    display: block;
    font-size: 2rem;
    font-weight: 400;
    /*font-style: italic;*/
    text-transform: none;
    letter-spacing: 0.1em;
    margin-bottom: 0.5rem;
}

.hero-title .cottage-line {
    display: block;
    font-size: 5.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.hero-subtitle {
    font-size: 1.4rem;
    font-weight: 300;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 6px rgba(0,0,0,0.5);
    line-height: 1.6;
    letter-spacing: 0.02em;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-primary, .cta-secondary {
    padding: 1rem 2rem;
    border: 2px solid white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.cta-primary {
    background: white;
    color: #1a1a1a;
}

.cta-primary:hover {
    background: transparent;
    color: white;
    transform: translateY(-2px);
}

.cta-secondary {
    background: transparent;
    color: white;
}

.cta-secondary:hover {
    background: white;
    color: #1a1a1a;
    transform: translateY(-2px);
}

.gallery-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    z-index: 3;
}

.gallery-prev, .gallery-next {
    background: rgba(255,255,255,0.2);
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.gallery-prev:hover, .gallery-next:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.gallery-dots {
    display: flex;
    gap: 0.5rem;
}

.gallery-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-dot.active {
    background: white;
    transform: scale(1.2);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-gallery {
        height: 100vh;
        min-height: 600px;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-title {
        white-space: normal;
    }
    
    .hero-title .welcome-line {
        font-size: 1.5rem;
        white-space: normal;
    }
    
    .hero-title .cottage-line {
        font-size: 3.5rem;
        white-space: normal;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }
    
    .gallery-controls {
        bottom: 20px;
    }
    
    .gallery-prev, .gallery-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .hero-gallery {
        min-height: 500px;
    }
    
    .hero-title .cottage-line {
        font-size: 2.8rem;
    }
    
    .hero-title .welcome-line {
        font-size: 1.3rem;
    }
}