:root {
    --color-gold: #D59A00;
    --color-gold-dark: #b38002;
    --color-gold-light: #D9BA85;
    --color-brown: #5D4037;
    --color-brown-dark: #3E2723;
    --color-dark: #1A1A2E;
    --color-text: #2C2C2C;
    --color-text-light: #666;
    --color-bg: #FFFFFF;
    --color-bg-light: #FAFAFA;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--color-text);
    overflow-x: hidden;
    background-color: var(--color-bg);
}

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

/* Navbar */
.navbar {
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 1rem 0;
    transition: all 0.3s ease;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 0;
}

.navbar-brand img {
    height: 50px;
    width: auto;
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    opacity: 0.8;
}

.nav-link {
    color: var(--color-text) !important;
    font-weight: 500;
    margin: 0 10px;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--color-gold) !important;
}

/* Hero Section */
.hero-section {
    height: 100vh;
    position: relative;
    overflow: hidden;
    background: url('../images/hero.png') center/cover no-repeat;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 0 50px;
    text-align: center;
}

.hero-text-container {
    max-width: 1000px;
    width: 100%;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: 4.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.5);
    line-height: 1.2;
}

.hero-content h1 .text-gold {
    color: var(--color-gold-light);
}

.hero-content p {
    font-size: 1.3rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    text-shadow: 1px 1px 4px rgba(0,0,0,0.5);
    line-height: 1.6;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary-custom {
    background-color: var(--color-gold);
    color: white;
    padding: 15px 50px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.4);
}

.btn-primary-custom:hover {
    background-color: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 167, 38, 0.6);
    color: white;
}

.btn-secondary-custom {
    background-color: transparent;
    color: white;
    padding: 15px 50px;
    border-radius: 8px;
    border: 2px solid white;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.btn-secondary-custom:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
    color: white;
}

/* Section Styles */
.section {
    padding: 100px 0;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 1rem;
    text-align: center;
}

.section-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    color: var(--color-text-light);
    text-align: center;
    margin-bottom: 4rem;
}

/* Chi Siamo / Significato Nome */
.about-section {
    background-color: #FAF7F2;
}

.about-content {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--color-text-light);
}

.about-content p {
    margin-bottom: 1.5rem;
}

.crown-icon {
    color: var(--color-gold);
    font-size: 1.2rem;
    margin-right: 5px;
}

/* Gallery */
.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    margin-bottom: 30px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
}

.gallery-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    display: flex;
    align-items: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay h5 {
    color: white;
    font-weight: 600;
    margin: 0;
}

.gallery-section {
    background-color: var(--color-bg);
}

/* Gallery Swiper */
.gallery-swiper {
    padding: 40px 0 60px;
    overflow: visible;
}

.gallery-swiper .swiper-wrapper {
    align-items: center;
}

.gallery-swiper .swiper-slide {
    width: 300px;
    height: 400px;
    transition: all 0.6s ease;
    opacity: 0.6;
    transform: scale(0.85);
}

.gallery-swiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
    width: 450px;
    height: 500px;
    z-index: 2;
}

.gallery-swiper .swiper-slide-prev,
.gallery-swiper .swiper-slide-next {
    opacity: 0.7;
    transform: scale(0.85);
}

.gallery-slide-content {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: all 0.6s ease;
}

.gallery-swiper .swiper-slide-active .gallery-slide-content {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.gallery-slide-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-swiper .swiper-button-next,
.gallery-swiper .swiper-button-prev {
    color: var(--color-gold);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.gallery-swiper .swiper-button-next:after,
.gallery-swiper .swiper-button-prev:after {
    font-size: 20px;
    font-weight: bold;
}

.gallery-swiper .swiper-button-next:hover,
.gallery-swiper .swiper-button-prev:hover {
    background: var(--color-gold);
    color: white;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .gallery-swiper .swiper-slide {
        width: 200px;
        height: 300px;
    }
    
    .gallery-swiper .swiper-slide-active {
        width: 280px;
        height: 350px;
    }
    
    .gallery-swiper .swiper-button-next,
    .gallery-swiper .swiper-button-prev {
        width: 40px;
        height: 40px;
    }
    
    .gallery-swiper .swiper-button-next:after,
    .gallery-swiper .swiper-button-prev:after {
        font-size: 16px;
    }
}

/* Services / Comfort */
.service-section {
    background-color: var(--color-bg-light);
}

.service-box {
    background: white;
    border-radius: 10px;
    padding: 40px 30px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    height: 100%;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 15px 0;
    font-size: 1.1rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
}

.service-list .material-icons {
    color: var(--color-gold);
    margin-right: 15px;
    font-size: 1.5rem;
}

.service-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 10px;
    background: white;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #f0f0f0;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.service-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.service-card h4 {
    color: var(--color-text);
    font-weight: 600;
    margin-bottom: 15px;
}

/* Posizione Strategica */
.location-section {
    background-color: var(--color-bg);
}

.location-section-title {
    font-family: 'Playfair Display', serif;
    color: var(--color-text);
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.location-box {
    background-color: #FAF7F2;
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 15px;
}

.location-box-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.location-icon-gold {
    color: var(--color-gold);
    font-size: 1.8rem;
    margin-right: 12px;
}

.location-box-title {
    font-family: 'Playfair Display', serif;
    color: var(--color-text);
    font-weight: 700;
    font-size: 1.2rem;
    margin: 0;
}

.location-box-text {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 0;
    margin-left: 42px;
}

.location-box-details {
    margin-top: 10px;
    margin-left: 42px;
}

.location-detail-item {
    display: flex;
    align-items: center;
    margin-bottom: 8px;
}

.location-icon-blue {
    color: #2196F3;
    font-size: 1.1rem;
    margin-right: 8px;
}

.location-detail-text {
    color: var(--color-text-light);
    font-size: 0.9rem;
}

.location-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 20px;
}

/* CTA Section */
.cta-section {
    background-color: var(--color-brown);
    color: white;
    padding: 100px 0;
}

.cta-section .section-title {
    color: white;
    margin-bottom: 1rem;
}

.cta-section .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.cta-contact-info {
    margin-bottom: 30px;
    text-align: center;
}

.cta-contact-info .material-icons {
    font-size: 3rem;
    color: var(--color-gold-light);
    display: block;
    margin-bottom: 15px;
}

.cta-contact-info h5 {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: white;
}

.cta-contact-info p {
    margin: 0;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9);
}

.btn-cta {
    background-color: var(--color-gold);
    color: white;
    padding: 18px 60px;
    border-radius: 8px;
    border: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(255, 167, 38, 0.4);
}

.btn-cta:hover {
    background-color: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 167, 38, 0.6);
    color: white;
}

/* Footer */
.footer {
    background-color: var(--color-dark);
    color: white;
    padding: 50px 0 30px;
}

.footer-brand {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.footer-brand .logo-crown {
    font-size: 2rem;
}

.footer a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer a:hover {
    color: var(--color-gold);
}

.social-links {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
}

.social-links a {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    text-align: center;
    line-height: 40px;
    transition: all 0.3s ease;
    color: white;
}

.social-links a:hover {
    background: var(--color-gold);
    transform: translateY(-3px);
    color: white;
}

/* Smooth Scroll */
html {
    scroll-behavior: smooth;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-content {
        padding: 0 20px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section {
        padding: 60px 0;
    }
    
    .gallery-item img {
        height: 250px;
    }
    
    .social-links {
        justify-content: flex-start;
        margin-top: 20px;
    }
    
    .navbar-brand img {
        height: 40px;
    }
}

