/* Styles spécifiques pour le Cosy House Namur */

.nav-brand a {
    text-decoration: none;
    color: inherit;
}

/* Hero Section Cosy */
.cosy-hero {
    height: 70vh;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 30%, #667eea 70%, #4facfe 100%);
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 80px;
    overflow: hidden;
}

.cosy-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 40%, rgba(240, 147, 251, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(245, 87, 108, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 50% 20%, rgba(102, 126, 234, 0.2) 0%, transparent 50%);
    animation: float 15s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateX(0px) rotate(0deg); }
    50% { transform: translateX(5px) rotate(1deg); }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    color: var(--text-light);
    max-width: 800px;
    padding: 0 2rem;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content .subtitle {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    opacity: 0.9;
}

.hero-content .location {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.8;
}

.hero-content .cta-button {
    background: var(--gradient-luxury);
    color: var(--text-light);
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.hero-content .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.cosy-hero .hero-content {
    text-align: center;
    color: var(--text-light);
    z-index: 2;
}

.cosy-hero .hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Gallery Section */
.gallery {
    padding: 4rem 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 300px 300px;
    gap: 1rem;
    margin-top: 2rem;
}

.gallery-item.main {
    grid-row: span 2;
}

.gallery-item {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
    position: relative;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: all 0.3s ease;
    border: none;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.gallery-item:hover .gallery-img {
    transform: scale(1.05);
}

.gallery .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-weight: 600;
    text-align: center;
    padding: 1rem;
}

/* Description Section */
.description {
    padding: 4rem 0;
    background: white;
}

.description-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

.description-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.description-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.description-text blockquote {
    background: var(--background-light);
    padding: 2rem;
    border-left: 4px solid var(--accent-color);
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.2rem;
    color: var(--text-accent);
}

/* Booking Card */
.booking-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border-light);
    position: sticky;
    top: 100px;
}

.booking-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.booking-info {
    color: var(--text-muted);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.new-badge {
    background: var(--gradient-warm);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    display: inline-block;
}

.rating-badge {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    font-weight: 600;
}

.host-info {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.host-avatar {
    width: 40px;
    height: 40px;
    background: var(--gradient-luxury);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: white;
}

.full-width {
    width: 100%;
    text-align: center;
}

.btn-primary.full-width {
    width: 100%;
    text-align: center;
    padding: 0.8rem 0.5rem;
    font-size: 0.9rem;
    line-height: 1.2;
    word-wrap: break-word;
    white-space: normal;
}

/* Features Section */
.features {
    padding: 4rem 0;
    background: var(--background-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition-normal);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

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

/* Access Section */
.access {
    padding: 4rem 0;
    background: white;
}

.access-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.access-item {
    background: var(--background-light);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-light);
    transition: var(--transition-normal);
}

.access-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.access-item h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.access-item p {
    color: var(--text-muted);
    line-height: 1.6;
}

/* CTA Section */
.cta-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 50%, #667eea 100%);
    color: var(--text-light);
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary.large,
.btn-secondary.large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .description-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 250px);
    }
    
    .gallery-item.main {
        grid-row: span 1;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .features-grid,
    .access-grid {
        grid-template-columns: 1fr;
    }
    
    .booking-card {
        position: static;
    }
}
