/* Reset base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

/* Header / Menu */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ffdeeb;
    padding: 1px 50px;
}

header .logo img {
    height: 150px;
    width: 200px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav ul li a:hover {
    color: #ff1a75;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 80px 20px 60px; /* prima era 80px 20px; ora aggiungi spazio in basso */
    background-color: #ffe6f0;
}

.hero h1 {
    font-family: "Lucida Handwriting",  "Brush Script MT", cursive;
    font-size: 50px;
    margin-bottom: 10px;
    color: #333;
}

.hero p {
    font-family: Arial, sans-serif;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555;
    font-size: 16px;

}

.hero video {
    margin-top: 40px; /* Spazio sopra al video */
    border-radius: 10px;
    max-width: 100%;
    height: auto;
}

.hero-slider {
    text-align: center;
    padding: 60px 20px;
}

.hero-slider h1 {
    font-family: "Lucida Handwriting", "Brush Script MT", cursive;
    font-size: 50px;
    margin-bottom: 10px;
    color: #333;
}

.hero-slider p {
    font-family: Arial, sans-serif;
    font-style: italic;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #555;
    font-size: 16px;
    margin-bottom: 30px;
}

.slider-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
}

.slide video {
    width: 100%;
    max-height: 500px;
    border-radius: 10px;
    display: block;
}

/* Frecce */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    background-color: rgba(255,255,255,0.6);
    border: none;
    cursor: pointer;
    padding: 5px 12px;
    border-radius: 50%;
    z-index: 10;
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
    background-color: rgba(255,255,255,0.9);
}


.video-container {
    position: relative;
    display: inline-block;
}

.video-label {
    position: absolute;
    top: 15px;
    left: 20px;
    font-size: 20px;
    font-weight: bold;
    color: #ff1a75;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.5);
    background-color: rgba(255,255,255,0.3);
    padding: 5px 10px;
    border-radius: 5px;
    font-family: 'Arial', sans-serif;
}

/* Latest News */
.latest-news {
    padding: 50px 20px;
    background-color: #fff0f5;
    text-align: center;
}

.latest-news h2 {
    font-size: 28px;
    margin-bottom: 30px;
}

.news-grid {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
}

.news-card {
    background-color: #fff;
    border-radius: 10px;
    padding: 15px;
    max-width: 250px;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.news-card img {
    width: 100%;
    height: 200px;           /* altezza uniforme */
    object-fit: cover;       /* taglia l’immagine per riempire la card */
    border-radius: 10px;
    margin-bottom: 10px;
}

.news-card h3 {
    font-size: 18px;
    margin-bottom: 8px;
}

.news-card p {
    font-size: 14px;

}

.read-more {
    display: inline-block;
    text-decoration: none;
    color: #ff1a75;
    font-weight: bold;
    font-size: 14px;
    margin-top: 8px;
}

.read-more:hover {
    text-decoration: underline;
}

.archive-link {
    text-align: center;
    margin-top: 30px;
}

.archive-link a {
    text-decoration: none;
    color: #ff1a75;
    font-weight: bold;
    font-size: 16px;
}

.archive-link a:hover {
    text-decoration: underline;
}

/* --- Footer Layout con partner --- */
footer {
    background-color: #ffdeeb;
    padding: 50px 20px 30px;
    text-align: center;
}

/* Colonne principali (menu + partner) */
.footer-columns {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 120px; /* spazio tra menu e partner */
    flex-wrap: wrap;
    margin-bottom: 25px;
}

/* Archived News List */
.archived-news-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 20px;
}

.archived-news-list h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 20px;
}

.archived-news-list ul {
    list-style: none;
    padding: 0;
}

.archived-news-list li {
    padding: 10px 0;
    border-bottom: 1px solid #eee;
    font-size: 16px;
}

.archived-news-list .news-date {
    font-weight: bold;
    margin-right: 10px;
}

.pagination {
    text-align: center;
    margin-top: 30px;
}

.pagination .page-link {
    text-decoration: none;
    color: #ff1a75;
    font-weight: bold;
    margin: 0 5px;
}

.pagination .page-link:hover {
    text-decoration: underline;
}

.media-slider {
    max-width: 900px;
    margin: 0 auto 60px;
    position: relative;
    text-align: center;
}

.slider-container {
    position: relative;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.slide {
    min-width: 100%;
    box-sizing: border-box;
}

.slide img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

/* Frecce */
.prev, .next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 36px;
    background-color: rgba(255,255,255,0.6);
    border: none;
    cursor: pointer;
    padding: 8px 14px;
    border-radius: 50%;
    z-index: 100;               /* sopra le immagini */
    user-select: none;          /* evita selezione del testo frecce */
}

.prev { left: 10px; }
.next { right: 10px; }

.prev:hover, .next:hover {
    background-color: rgba(255,255,255,0.9);
}

#clip4sale-latest, #onlyfans-access {
  padding: 40px 20px;
  text-align: center;
}

.shop-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
}

.shop-card {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.15);
  padding: 15px;
}

.shop-card img {
  width: 100%;
  border-radius: 10px;
}

.shop-card h3 {
  margin: 10px 0 5px;
}

.btn-buy, .btn-subscribe {
  display: inline-block;
  margin-top: 10px;
  background-color: #ff1a75;
  color: white;
  padding: 10px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.3s ease;
}

.btn-buy:hover, .btn-subscribe:hover {
  background-color: #c5001d;
}

/* --- Shop Buttons --- */
.btn {
    display: inline-block;
    background-color: #ff1a75;       /* rosa principale */
    color: #fff;                     /* testo bianco */
    text-decoration: none;
    font-weight: bold;
    padding: 10px 20px;
    border-radius: 25px;             /* arrotondato */
    transition: all 0.3s ease;
    font-size: 15px;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.btn:hover {
    background-color: #ff4d94;       /* rosa più chiaro */
    transform: scale(1.05);          /* leggero ingrandimento */
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}



/* --- FOOTER --- */
footer {
    background-color: #ffdeeb;
    padding: 40px 20px 25px;
    color: #333;
    text-align: center;
}

/* Contenitore principale a tre colonne */
.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    max-width: 1100px;
    margin: 0 auto 20px auto;
}

/* --- Sinistra: menu --- */
.footer-left ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-left li {
    margin-bottom: 8px;
}

.footer-left a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    transition: color 0.3s;
}

.footer-left a:hover {
    color: #ff1a75;
}

/* --- Centro: social icons --- */
.footer-center {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 18px;
}

.footer-center img {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer-center img:hover {
    transform: scale(1.15);
    opacity: 0.85;
}

/* --- Destra: partner --- */
.footer-right {
    text-align: right;
}

.footer-right p {
    font-size: 12px;      /* più piccolo */
    color: #888;          /* grigio chiaro */
    font-style: italic;   /* corsivo */
    margin-bottom: 5px;   /* spazio ridotto dal logo */
}

.footer-right {
    text-align: center;   /* centra tutto il contenuto */
    display: flex;
    flex-direction: column; /* testo sopra, logo sotto */
    align-items: center;
}

.footer-right img {
    height: 80px;
    transition: transform 0.3s ease;
}

.footer-right img:hover {
    transform: scale(1.08);
}

/* --- Copyright --- */
.copyright {
    font-size: 13px;
    color: #555;
    text-align: center;
}

/* --- Versione mobile --- */
@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .footer-right {
        text-align: center;
    }
}

/* --- Shop Page Styles --- */

.shop-section {
    display: flex;
    justify-content: center;
    padding: 50px 20px;
}

.shop-card-large {
    max-width: 700px;
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.shop-card-large h2 {
    font-size: 28px;
    margin-bottom: 15px;
    color: #333;
    font-weight: bold;
}

.shop-card-large p {
    font-size: 16px;
    color: #555;
    margin-bottom: 25px;
    line-height: 1.6;
}

/* Button style reused but more elegant for shop */
.shop-btn {
    background-color: #ff1a75;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    display: inline-block;
    font-size: 16px;
    transition: all 0.3s ease;
}

.shop-btn:hover {
    background-color: #ff4d94;
    transform: scale(1.05);
}
.header-center {
    flex-grow: 1;           /* riempie lo spazio centrale */
    text-align: center;     /* centra il testo */
    font-size: 42px;
    font-weight: bold;
    color: #333;
    padding-top: 10px;      /* allinea verticalmente col logo */
    white-space: nowrap;    /* evita che vada a capo */
    font-family: "Trebuchet MS", sans-serif;
}

/* --- New Header Layout --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;    /* mantiene tutto allineato in basso */
    background-color: #ffdeeb;
    padding: 10px 40px;       /* piccolo padding verticale invece di 0 */
    height: auto;             /* altezza automatica in base al contenuto */
    box-sizing: border-box;
}

/* Sinistra: she */
.header-balloons {
    display: flex;
    gap: 8px;
}

.header-balloons img {
    max-height: 120px;  /* ridotto da 180px a 120px */
    width: auto;
}

.header-center-logo img {
    max-height: 140px;  /* ridotto da 200px a 140px */
    width: auto;
}

/* Destra: menu già gestito dal tuo CSS, non serve modificarlo */

/* Altezza fissa dell'header */
/* --- Header Compatto --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;       /* immagini e menu allineati al fondo */
    background-color: #ffdeeb;
    padding: 0 40px;             /* solo padding orizzontale */
    height: 240px;               /* altezza più sottile */
    box-sizing: border-box;
}

/* Foto a sinistra */
.header-balloons {
    display: flex;
    gap: 8px;
    align-items: flex-end;       /* allinea immagini al fondo */
}

.header-balloons img {
    max-height: 180px;           /* altezza massima immagine lato sinistro */
    width: auto;
}

/* Logo centrale */
.header-center-logo {
    display: flex;
    align-items: flex-end;       /* allinea logo al fondo */
    justify-content: center;
}

.header-center-logo img {
    max-height: 200px;           /* altezza massima logo centrale */
    width: auto;
}

/* Menu a destra */
nav ul {
    list-style: none;
    display: flex;
    gap: 25px;
    align-items: flex-end;       /* mantiene menu allineato in basso */
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

nav ul li a:hover {
    color: #ff1a75;
}


/* --- Stile per pagine News --- */

main.news-article {
    max-width: 900px;           /* larghezza massima */
    margin: 60px auto 80px;     /* centrato con spazio sopra e sotto */
    padding: 0 20px;
    font-family: "Segoe UI", Roboto, sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

/* Titolo principale della news */
.news-article h1 {
    font-size: 2em;
    color: #c2185b; /* rosa Ballooncina */
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
}

/* Data o sottotitolo */
.news-article .date {
    text-align: center;
    font-size: 0.9em;
    color: #999;
    margin-bottom: 30px;
}

/* Paragrafi del testo */
.news-article p {
    margin-bottom: 20px;
    text-align: justify;
}

/* Immagini della news */
.news-article img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 30px auto;
    border-radius: 12px;
}

/* Bottone "Torna alle News" */
.back-to-news {
    display: inline-block;
    background-color: #ffdeeb;
    color: #c2185b;
    text-decoration: none;
    padding: 10px 20px;
    border-radius: 20px;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 40px auto 60px;
    text-align: center;
}

.back-to-news:hover {
    background-color: #c2185b;
    color: #fff;
}

.btn-c4s {
    display: inline-block;
    background-color: #ff1a75;
    color: #fff;
    padding: 12px 28px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.btn-c4s:hover {
    background-color: #ff4d94;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.gallery-subtitle {
    font-style: italic;
    color: #555;
    margin-top: 30px;      /* più spazio sopra */
    margin-bottom: 25px;
    font-size: 16px;
    text-align: center;
}

/* Subtitle for Photogallery — more specific to avoid overrides */
.media-slider .gallery-subtitle {
    display: block;
    font-style: italic;
    color: #555;
    margin-top: 18px;      /* spazio sopra — aumenta o diminuisci */
    margin-bottom: 25px;
    font-size: 16px;
    text-align: center;
}

/* --- About Me Section --- */
.about-section {
    max-width: 900px;
    margin: 60px auto 80px;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    font-family: "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.about-section h1 {
    font-size: 2em;
    color: #c2185b; /* Rosa Ballooncina */
    text-align: center;
    margin-bottom: 25px;
}

.about-section p {
    margin-bottom: 18px;
    text-align: justify;
    font-size: 16px;
}

/* --- Contacts Section --- */
.contacts-section {
    max-width: 900px;
    margin: 60px auto 80px;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    font-family: "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
    text-align: center;
}

.contacts-section h1 {
    font-size: 2em;
    color: #c2185b;
    margin-bottom: 25px;
}

.contacts-section p {
    margin-bottom: 18px;
    font-size: 16px;
}

.email-display {
    font-size: 18px;
    font-weight: bold;
    color: #ff1a75;
    margin-top: 10px;
    margin-bottom: 25px;
}

/* Email Button */
.email-btn {
    display: inline-block;
    background-color: #ff1a75;
    color: #fff;
    padding: 12px 30px;
    border-radius: 30px;
    font-weight: bold;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.email-btn:hover {
    background-color: #ff4d94;
    transform: scale(1.05);
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

/* --- Fans Section / Guestbook --- */
.fans-section {
    max-width: 900px;
    margin: 60px auto 80px;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    font-family: "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.fans-section h1 {
    font-size: 2em;
    color: #c2185b;
    text-align: center;
    margin-bottom: 20px;
}

.fans-intro {
    text-align: center;
    margin-bottom: 40px;
}

/* --- Fans Section / Guestbook --- */
.fans-section {
    max-width: 900px;
    margin: 60px auto 80px;
    padding: 40px 30px;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.05);
    font-family: "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #333;
}

.fans-section h1 {
    font-size: 2em;
    color: #c2185b;
    text-align: center;
    margin-bottom: 20px;
}

.fans-intro {
    text-align: center;
    margin-bottom: 40px;
}

/* Messaggi approvati */
.approved-feedback {
    margin-bottom: 50px;
}

.feedback-card {
    background-color: #fff0f7;
    border-left: 4px solid #ff1a75;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.feedback-card h3 {
    color: #ff1a75;
    margin-bottom: 10px;
}

#age-gate-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.85);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#age-gate-popup {
  background-color: #fff;
  color: #333;
  padding: 40px 30px;
  border-radius: 16px;
  text-align: center;
  max-width: 400px;
  font-family: Arial, sans-serif;
}

#age-gate-popup h2 {
  font-size: 24px;
  margin-bottom: 15px;
}

#age-gate-popup p {
  font-size: 16px;
  margin-bottom: 25px;
}

#age-gate-popup {
    background-color: #fff;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    margin: auto;
}

#age-gate-popup button {
    padding: 10px 25px;
    font-size: 16px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    background-color: #ff1a75;
    color: white;
    font-weight: bold;
    transition: all 0.3s ease;
    margin: 0 10px; /* questo crea lo spazio tra i bottoni */
}

#age-gate-popup button:hover {
    background-color: #ff4d94;
    transform: scale(1.05);
}

#age-gate-overlay {
    display: flex;        /* mantiene il layout flex */
    visibility: hidden;   /* nascosto di default */
    opacity: 0;           /* trasparente */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.7);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.3s ease;
}
/* --- Mobile Responsive Fix --- */
@media (max-width: 480px) {
    /* Header compatto per smartphone */
    header {
        flex-direction: column !important;
        align-items: center !important;
        height: auto !important;
        padding: 5px 10px !important;
    }

    .header-balloons,
    .header-center-logo,
    nav {
        justify-content: center !important;
        text-align: center !important;
        margin: 5px 0 !important;
    }

    /* Riduzione immagini header */
    .header-balloons img,
    .header-center-logo img {
        max-height: 50px !important;
        width: auto !important;
    }

    /* Menu a colonna */
    nav ul {
        flex-direction: column !important;
        gap: 8px !important;
        align-items: center !important;
        margin: 0 !important;
    }

    nav ul li a {
        font-size: 14px !important;
        padding: 5px 0 !important;
    }

    /* Contenuti principali */
    .hero-slider,
    .latest-news,
    main,
    .about-section,
    .contacts-section,
    .fans-section {
        width: 100% !important;
        max-width: 100% !important;
        padding: 10px !important;
        margin: 0 auto !important;
    }

    .news-grid {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }

    /* Footer centrato */
    .footer-container {
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 15px !important;
    }

    .footer-left,
    .footer-center,
    .footer-right {
        text-align: center !important;
        margin-bottom: 10px !important;
    }

    .footer-right img {
        height: 50px !important;
    }
}
