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

:root {
    --primary-color: #f59f0a;
    --secondary-color: #ea580c;
    --accent-color: #d97706;
    --brown-color: #92400e;
    --dark-bg: #451a03;
    --light-bg: #fff7ed;
    --text-dark: #1c1917;
    --text-light: #ffffff;
    --gradient-1: linear-gradient(135deg, #f59e0b 0%, #ea580c 100%);
    --gradient-2: linear-gradient(135deg, #ea580c 0%, #d97706 100%);
    --warm-orange: #fb923c;
}

body {
    font-family: 'Raleway', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    background: var(--light-bg);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background: var(--dark-bg);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-img {
    height: 40px;
    width: auto;
    display: none;
}

.logo-img[src] {
    display: block;
}

.logo-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    letter-spacing: 1px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    font-size: 0.95rem;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: var(--gradient-1);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--text-light);
    margin-top: 70px;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-image: url("img/hero.jpg"); /* 👈 tua immagine */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

/* overlay scuro per il testo */
.hero-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(69, 26, 3, 0.55);
}

.hero-content {
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    animation: heroFade 1.2s ease forwards;
    font-family: 'Montserrat', sans-serif;
    font-size: 4.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

@keyframes heroFade {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    font-weight: 300;
    letter-spacing: 1px;
}

.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 15px; /* space between buttons */
    align-items: center;
    margin-top: 2rem;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center; /* vertically center text */
    justify-content: center;
    padding: 15px 40px;
    /* other styles stay same */
}

.btn-primary {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    transition: transform 0.3s, box-shadow 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}


.btn-secondary {
    display: inline-block;
    padding: 15px 40px;
    background: transparent;
    color: white;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid white;
    transition: transform 0.3s, box-shadow 0.3s, background 0.3s, color 0.3s;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.btn-secondary:hover {
    background: white;
    color: var(--accent-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(245, 158, 11, 0.4);
}


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

.section-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
    position: relative;
    padding-bottom: 1rem;
    font-weight: 700;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--gradient-1);
    border-radius: 2px;
}

/* Promo Section */
.promo-section {
    background: white;
}

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

.promo-card {
    background: var(--light-bg);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.15), 0 0 30px rgba(245, 158, 11, 0.4);
}

.promo-card.featured {
    border: 2px solid var(--primary-color);
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(139, 92, 246, 0.05) 100%);
}

.promo-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--accent-color);
    color: rgb(255, 255, 255);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.promo-card h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.promo-time {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.promo-list {
    list-style: none;
    margin-bottom: 1rem;
}

.promo-list li {
    padding: 0.5rem 0;
    color: var(--text-dark);
}

.promo-days {
    color: #666;
    font-style: italic;
    margin-top: 1rem;
    font-size: 0.9rem;
}

/* Events Section */
.events-section {
    background: var(--light-bg);
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.event-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    display: flex;
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.event-date {
    background: var(--gradient-1);
    color: white;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 80px;
}

.event-date .day {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 0.5rem;
}

.event-content {
    padding: 1.5rem;
    flex: 1;
}

.event-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.event-time {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

.event-description {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.event-tag {
    display: inline-block;
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Blog Section */
.blog-section {
    background: white;
}

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

.blog-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

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

.blog-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.blog-img-1 {
    background-image: url("img/news1.jpg");
}

.blog-img-2 {
    background-image: url("img/news2.jpg");
}

.blog-img-3 {
    background-image: url("img/news3.jpg");
}

.blog-img-4 {
    background-image: url("img/news4.jpg");
}

.blog-content {
    padding: 1.5rem;
}

.blog-card:hover .blog-image {
    transform: scale(1.05);
}

.blog-image {
    transition: transform 0.4s ease;
}

.blog-date {
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.blog-content h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 0.8rem;
    font-weight: 700;
}

.blog-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--secondary-color);
}

.blog-full-content {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.blog-full-content p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.blog-full-content ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
}

.blog-full-content li {
    margin-bottom: 0.5rem;
}

/* Footer */
footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 3rem 0 1rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3 {
    font-family: 'Montserrat', sans-serif;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.2rem;
    font-weight: 700;
}

.footer-section p {
    margin-bottom: 0.5rem;
    line-height: 1.8;
    color: #fff;
}

.footer-tagline {
    font-style: italic;
    color: #fff;
    margin-top: 0.5rem;
    opacity: 0.9;
}

.footer-section a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.3s;
}

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

.social-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}


.social-link {
    padding: 0.8rem 1.5rem;
    background: rgba(245, 158, 11, 0.2);
    border-radius: 8px;
    transition: all 0.3s;
    font-size: 1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: var(--text-light);
}

.social-link:hover {
    background: var(--primary-color);
    color: var(--dark-bg) !important; 
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(245, 158, 11, 0.3);
}

.social-text {
    transition: opacity 0.3s, color 0.3s;
    opacity: 1;
}

.social-link:hover .social-text {
    opacity: 1;
    color: var(--text-dark);
}

.social-link:hover .social-logo {
    /* Force the icon to match the text so it doesn't disappear */
    fill: var(--dark-bg) !important;
}

/* Disable the animated underline from the header links */
.social-link::after {
    display: none !important;
}

.social-logo {
    width: 20px;
    height: 20px;
    fill: currentColor;
}


.social-note {
    font-size: 0.85rem;
    color: #fff;
    font-style: italic;
    opacity: 0.9;
}

.credits {
    margin-top: 0.5rem;
    font-size: 0.9rem;
}

.credits a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.credits a:hover {
    color: var(--warm-orange);
}

.oloweb-logo {
    height: 22px;
    width: auto;
    vertical-align: middle;
    margin: 0 6px;
    display: inline-block;
}

.credits-logo-link {
    display: inline-flex;
    align-items: center;
}

/* Footer Message */
.footer-message {
    background: var(--dark-bg);
    text-align: center;
    padding: 3rem 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-message p {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-light);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.footer-message-img {
    max-width: 500px;   /* limite reale */
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto 0px;
}

/* Contact & Hours Section */
.contact-hours-section {
    background: var(--light-bg);
    padding: 80px 0;
}

.contact-hours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-box,
.hours-box,
.social-box {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
}

.section-title-small {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    color: var(--text-dark);
    line-height: 1.8;
}

.contact-item a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--secondary-color);
}

.hours-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 0.8rem 0;
    border-bottom: 1px solid var(--light-bg);
}

.hours-row:last-child {
    border-bottom: none;
}

.hours-day {
    font-weight: 600;
    color: var(--text-dark);
}

.hours-time {
    color: var(--primary-color);
    font-weight: 600;
}

.footer-bottom {
    display: flex;
    justify-content: center;   /* 🔥 centro orizzontale */
    align-items: center;       /* stessa altezza */
    gap: 1.2rem;               /* distanza tra copyright e credits */
    font-size: 0.9rem;
}


.footer-bottom p {
    margin: 0;
    line-height: 1;       /* 🔥 evita disallineamenti */
    display: flex;
    align-items: center;
}



.oloweb-logo {
    height: 1em;         /* 🔥 stessa altezza del testo */
    width: auto;
    display: block;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1rem;
}

.social-link-large {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-bg);
    border-radius: 10px;
    text-decoration: none;
    color: var(--text-dark);
    transition: all 0.3s;
    font-weight: 500;
}

.social-link-large:hover {
    background: var(--gradient-1);
    color: white;
    transform: translateX(5px);
}

.social-icon {
    font-size: 1.5rem;
}

.social-link-large .social-icon {
    width: 24px;
    height: 24px;
    fill: currentColor;
}




.social-note-large {
    font-style: italic;
    color: #666;
    margin-top: 1rem;
    font-size: 0.9rem;
}

.map-container {
    margin-top: 3rem;
}

.map-container iframe {
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.hero-badge {
    background-color: rgba(245, 158, 11, 0.9) !important;
    color: #1f1f1f;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: bold;
    margin-bottom: 15px;
    display: inline-block;
    position: relative;
    z-index: 10;
    box-shadow: 0 0 6px rgba(245, 158, 11, 0.6);
    backdrop-filter: none !important;  /* in case any blur effect is messing */
}



.scroll-down {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 2rem;
    color: white;
    opacity: 0.8;
    animation: bounce 1.5s infinite;
}


@keyframes bounce {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 10px); }
}

/* Responsive */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--dark-bg);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .subtitle {
        font-size: 1.2rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .event-card {
        flex-direction: column;
    }

    .event-date {
        flex-direction: row;
        justify-content: center;
        gap: 1rem;
        min-width: auto;
    }

    .footer-message p {
        font-size: 1.8rem;
    }
 
}

