/* Design System & Variables */
:root {
    --color-white: #FFFFFF;
    --color-offwhite: #FAFAFA;
    --color-beige: #F4EFE6;
    --color-navy: #1B263B;
    --color-gold: #C9A96E;
    --color-gold-hover: #B89658;
    --color-text: #333333;
    --color-text-light: #777777;

    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --font-cursive: 'Great Vibes', cursive;

    --transition: all 0.3s ease;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--color-navy);
}

a {
    text-decoration: none;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--border-radius);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.section-title {
    font-size: 2.2rem;
    letter-spacing: 2px;
    margin-bottom: 40px;
    text-transform: uppercase;
}

/* Navbar */
.navbar {
    background: var(--color-white);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    padding: 15px 0;
}

.nav-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.logo {
    justify-self: start;
    text-align: center;
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-navy);
    line-height: 1.2;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--color-text-light);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.nav-links a:hover,
.nav-links a.active {
    color: var(--color-gold);
}

.btn-nav,
.btn-hero,
.btn-submit {
    background: var(--color-navy);
    color: var(--color-white);
    padding: 10px 24px;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
}

.btn-nav:hover,
.btn-hero:hover,
.btn-submit:hover {
    background: var(--color-gold);
}

.nav-container .btn-nav {
    justify-self: end;
}

.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 24px;
    cursor: pointer;
    position: relative;
}

.hamburger .bar {
    display: block;
    width: 100%;
    height: 2.5px;
    background-color: var(--color-navy);
    border-radius: 2px;
    position: absolute;
    left: 0;
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1),
                opacity 0.3s ease,
                top 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

.hamburger .bar-top {
    top: 0;
}

.hamburger .bar-middle {
    top: 50%;
    transform: translateY(-50%);
}

.hamburger .bar-bottom {
    top: 100%;
    transform: translateY(-100%);
}

/* Active state: X animation */
.hamburger.active .bar-top {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.hamburger.active .bar-middle {
    opacity: 0;
    transform: translateX(20px) translateY(-50%);
}

.hamburger.active .bar-bottom {
    top: 50%;
    transform: translateY(-50%) rotate(-45deg);
}

/* Hero Section */
.hero {
    margin-top: 75px;
    /* offset navbar */
    height: calc(70vh + 20px);
    background-image: url('media/FotoHomeVillaparadisoCensured.jpg');
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 2;
    color: var(--color-white);
    padding-bottom: 50px;
}

.hero h1 {
    color: var(--color-white);
    font-size: 3.5rem;
    letter-spacing: 3px;
    margin-bottom: 10px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.btn-hero {
    padding: 15px 35px;
    font-size: 1rem;
    position: absolute;
    bottom: -25px;
    /* overlap */
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    border: 2px solid var(--color-gold);
}

.hero-curve {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 1;
}

.hero-curve svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

.hero-curve .shape-fill {
    fill: #FFFFFF;
}

/* Chi Siamo */
.chi-siamo {
    padding: 100px 0;
}

.chi-siamo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.subtitle {
    color: var(--color-gold);
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.chi-siamo-text h2 {
    font-size: 2.8rem;
    margin-bottom: 20px;
    font-weight: 400;
}

.chi-siamo-text p {
    color: var(--color-text-light);
    margin-bottom: 15px;
}

.cursive-text {
    font-family: var(--font-cursive);
    font-size: 2.5rem;
    color: var(--color-navy);
    line-height: 1.2;
    margin-top: 20px;
}

.chi-siamo-image {
    position: relative;
}

.floating-checklist {
    position: absolute;
    bottom: -30px;
    left: -30px;
    background: var(--color-white);
    padding: 20px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.floating-checklist li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-text-light);
}

.floating-checklist li i {
    color: var(--color-gold);
    margin-right: 10px;
}

/* Tipologie di Eventi */
.tipologie-eventi {
    padding: 60px 0;
}

.eventi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 800px;
    margin: 0 auto;
}

.evento-card {
    text-align: center;
}

.evento-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    margin-bottom: -20px;
    /* Overlap label */
    position: relative;
    z-index: 1;
}

.evento-label {
    background: var(--color-white);
    position: relative;
    z-index: 2;
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--color-navy);
}

/* I Nostri Spazi */
.i-nostri-spazi {
    padding: 80px 0;
}

.spazi-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.spazio-item {
    text-align: center;
}

.spazio-item img {
    width: 100%;
    object-fit: cover;
    margin-bottom: 15px;
}

.spazio-label {
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--color-navy);
}

.esterno img {
    height: 250px;
}

.interno img {
    height: 350px;
}

.catering img {
    height: 300px;
}

.festa img {
    height: 200px;
}

/* Catering & Ristorante */
.catering-section {
    background: #FFFFF0; /* Sfondo avorio */
    padding: 100px 0;
    margin: 60px 0;
    position: relative;
}

.catering-section .section-title {
    color: var(--color-gold);
    margin-bottom: 60px;
}

.catering-menus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
}

/* Decorazione botanica tra le colonne (Linea verticale e ramo di ulivo) */
.catering-menu-card:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 10%;
    bottom: 10%;
    right: -20px;
    width: 1px;
    background: linear-gradient(
        to bottom,
        rgba(201, 169, 110, 0.4) 0%,
        rgba(201, 169, 110, 0.4) calc(50% - 45px),
        transparent calc(50% - 45px),
        transparent calc(50% + 45px),
        rgba(201, 169, 110, 0.4) calc(50% + 45px),
        rgba(201, 169, 110, 0.4) 100%
    );
    transform: translateX(50%);
    z-index: 10;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.catering-menu-card:hover:not(:last-child)::after {
    transform: translate(50%, 10px);
}

.catering-menu-card:not(:last-child)::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translate(50%, -50%);
    width: 35px;
    height: 110px;
    background-image: url('media/divider-leaf.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 11;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.catering-menu-card:hover:not(:last-child)::before {
    transform: translate(50%, calc(-50% + 10px));
}

.catering-menu-card {
    perspective: 1500px;
    position: relative;
    z-index: 1;
    height: 100%;
    transition: transform 0.3s ease;
}

.catering-menu-card:hover {
    transform: translateY(-10px);
}

.flip-card-inner {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.4, 0.2, 0.2, 1);
    transform-style: preserve-3d;
}

.catering-menu-card.flipped .flip-card-inner {
    transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
    background: var(--color-white);
    padding: 40px 30px;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(201, 169, 110, 0.2);
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    width: 100%;
    transition: box-shadow 0.3s ease;
}

.flip-card-front {
    height: 100%;
}

.flip-card-back {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    transform: rotateY(180deg);
    background: linear-gradient(160deg, #1a2640 0%, #243450 100%);
    border: 1px solid rgba(201, 169, 110, 0.35);
    overflow: hidden;
}

/* Gold accent strip on top */
.flip-card-back::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--color-gold), transparent);
    pointer-events: none;
}

/* Subtle radial glow in bottom-right corner */
.flip-card-back::before {
    content: '';
    position: absolute;
    bottom: -60px;
    right: -60px;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201, 169, 110, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

/* Back card — title in cursive gold */
.flip-card-back .menu-subtitle {
    color: var(--color-gold);
    font-family: var(--font-cursive);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 0;
    margin-top: 10px;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(201, 169, 110, 0.25);
}

/* Back card — list items with divider lines */
.flip-card-back .menu-list {
    padding: 0;
    margin-bottom: 20px;
}

.flip-card-back .menu-list li {
    color: rgba(255, 255, 255, 0.87);
    border-bottom: 1px solid rgba(201, 169, 110, 0.18);
    padding-bottom: 9px;
    margin-bottom: 9px;
    font-size: 0.87rem;
    letter-spacing: 0.2px;
    font-weight: 400;
}

.flip-card-back .menu-list li:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.flip-card-back .menu-list li::before {
    content: '✦';
    font-size: 0.55rem;
    color: var(--color-gold);
    margin-top: 4px;
    flex-shrink: 0;
}

/* Category styling for menu items */
.menu-course {
    font-family: var(--font-heading);
    font-weight: 700;
    color: var(--color-gold);
    letter-spacing: 0.5px;
}

/* Back card — inverted gold outline button */
.flip-card-back .btn-menu {
    background: transparent;
    border: 1.5px solid var(--color-gold);
    color: var(--color-gold);
    margin-top: auto;
}

.flip-card-back .btn-menu:hover {
    background: var(--color-gold);
    color: var(--color-navy);
    transform: translateY(-2px);
}

.catering-menu-card:hover .flip-card-front,
.catering-menu-card:hover .flip-card-back {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.menu-image-container {
    margin-bottom: 30px;
    border-radius: 50%;
    width: 220px;
    height: 220px;
    margin-left: auto;
    margin-right: auto;
    overflow: hidden;
    border: 5px solid var(--color-gold);
    box-shadow: 0 10px 20px rgba(201, 169, 110, 0.2);
    position: relative;
}

.menu-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.catering-menu-card:hover .menu-image-container img {
    transform: scale(1.1);
}

.menu-subtitle {
    font-family: var(--font-heading);
    color: var(--color-gold);
    font-size: 1.6rem;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.menu-desc {
    color: var(--color-text);
    font-size: 1rem;
    margin-bottom: 25px;
    line-height: 1.6;
}

.menu-list {
    text-align: left;
    margin-bottom: 30px;
    flex-grow: 1;
    padding: 0 10px;
}

.menu-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    padding-left: 0;
    margin-bottom: 15px;
    color: var(--color-text);
    font-size: 0.95rem;
    font-weight: 500;
}

.menu-list li::before {
    content: '•';
    color: var(--color-gold);
    font-size: 1.4rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 1px;
}

.btn-menu {
    display: inline-block;
    background: var(--color-navy);
    color: var(--color-white);
    padding: 15px 30px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: background 0.3s ease, transform 0.3s ease;
    margin-top: auto;
}

.btn-menu:hover {
    background: var(--color-gold);
    color: var(--color-white);
    transform: translateY(-2px);
}

/* Contattaci */
.contattaci-section {
    padding: 60px 0;
}

.contatti-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.contatti-form form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-message {
    display: none;
    padding: 15px;
    border-radius: var(--border-radius);
    background-color: var(--color-beige);
    border: 1px solid var(--color-gold);
    color: var(--color-navy);
    font-size: 0.9rem;
    font-weight: 700;
    text-align: center;
}

.form-message.active {
    display: block;
}

.form-row {
    display: flex;
    gap: 15px;
    width: 100%;
}

.form-row input {
    flex: 1;
}

.contatti-form input,
.contatti-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: var(--border-radius);
    font-family: var(--font-body);
    width: 100%;
    transition: all 0.3s ease;
}

.contatti-form input:focus,
.contatti-form textarea:focus {
    border-color: var(--color-gold);
    outline: none;
    box-shadow: 0 0 5px rgba(201, 169, 110, 0.3);
}

.contatti-form input.error,
.contatti-form textarea.error {
    border-color: #e74c3c;
    background-color: #fdf5f5;
}

.input-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    flex: 1;
}

.error-message {
    color: #e74c3c;
    font-size: 0.85rem;
    margin-top: 5px;
    margin-left: 5px;
    display: none;
    text-align: left;
    font-weight: 700;
}

.error-message.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-5px); }
    to { opacity: 1; transform: translateY(0); }
}

.contatti-info {
    display: flex;
    gap: 30px;
    align-items: center;
}

.map-illustration {
    position: relative;
    text-align: center;
}

.italy-map-img {
    height: 250px;
    width: auto;
    opacity: 0.9;
    filter: drop-shadow(0 5px 10px rgba(0, 0, 0, 0.1));
}

.map-illustration .pin {
    position: absolute;
    top: 48%;
    /* Approssimazione per Roma/San Cesareo */
    left: 45%;
    transform: translate(-50%, -50%);
    background: var(--color-white);
    padding: 5px 10px;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-size: 0.8rem;
    font-weight: 700;
    white-space: nowrap;
    color: var(--color-text);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
}

.map-illustration .pin:hover {
    color: var(--color-gold);
    transform: translate(-50%, -50%) scale(1.05);
}

.info-text p {
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
    color: var(--color-text-light);
}

.info-text i {
    color: var(--color-gold);
    margin-right: 12px;
    margin-top: 5px; /* Aligns icon with the first line of text */
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}

.info-text a {
    color: var(--color-text-light);
    transition: var(--transition);
}

.info-text a:hover {
    color: var(--color-gold);
}

.cursive-title {
    font-family: var(--font-cursive);
    font-size: 2.5rem;
    color: var(--color-navy);
    font-weight: 400;
    margin-bottom: 15px;
}

/* Footer */
footer {
    background: var(--color-offwhite);
    padding: 40px 0 20px;
    text-align: center;
}

.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo {
    font-family: var(--font-heading);
    color: var(--color-navy);
    font-size: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.footer-logo img {
    height: 70px;
    width: auto;
    margin-bottom: 10px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-beige);
    color: var(--color-gold);
    border-radius: 50%;
    margin: 0 10px;
}

.social-icons a:hover {
    background: var(--color-gold);
    color: var(--color-white);
}

.copyright {
    font-size: 0.8rem;
    color: var(--color-text-light);
    margin-top: 20px;
}

.copyright a {
    color: var(--color-text-light);
    text-decoration: underline;
    margin-top: 5px;
    display: inline-block;
    transition: var(--transition);
}

.copyright a:hover {
    color: var(--color-gold);
}

/* Lightbox Modal */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    max-width: 90%;
    max-height: 80vh;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
    object-fit: contain;
}

@keyframes zoomIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.close-lightbox {
    position: absolute;
    top: 20px;
    right: 40px;
    color: #fff;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
    z-index: 2001;
}

.close-lightbox:hover {
    color: var(--color-gold);
}

.prev-lightbox,
.next-lightbox {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 16px;
    color: white;
    font-weight: bold;
    font-size: 30px;
    transition: 0.3s;
    border-radius: 3px;
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    user-select: none;
    z-index: 2001;
}

.prev-lightbox {
    left: 20px;
}

.next-lightbox {
    right: 20px;
}

.prev-lightbox:hover,
.next-lightbox:hover {
    background-color: rgba(0, 0, 0, 0.8);
    color: var(--color-gold);
}

/* Make images clickable */
.evento-card img,
.spazio-item img {
    cursor: pointer;
    transition: transform 0.3s ease;
}

.evento-card img:hover,
.spazio-item img:hover {
    transform: scale(1.05);
}

/* Responsive */
@media (max-width: 992px) {

    .chi-siamo-grid,
    .catering-flex,
    .contatti-grid,
    .catering-menus-grid {
        grid-template-columns: 1fr;
    }

    .catering-menu-card:not(:last-child)::after,
    .catering-menu-card:not(:last-child)::before {
        display: none;
    }

    .catering-image-box img {
        border-radius: var(--border-radius);
    }

    .floating-checklist {
        left: 20px;
        bottom: -20px;
    }
}

@media (max-width: 768px) {
    .contatti-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .form-row {
        flex-direction: column;
    }

    .nav-container {
        display: flex;
        justify-content: space-between;
    }

    .btn-nav {
        display: none;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--color-white);
        box-shadow: 0 10px 10px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        text-align: center;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .eventi-grid,
    .spazi-grid {
        grid-template-columns: 1fr;
    }

    .hero {
        height: 90vh;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.appear {
    opacity: 1;
    transform: translate(0);
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #25d366;
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.whatsapp-btn i {
    margin-top: 3px;
}

.whatsapp-btn:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
    color: #fff;
}

