/* ================================
   RIVIERA PADEL - CUSTOM STYLES
   Banner-Inspired Design: Beige, Black & Tennis Yellow
   ================================ */

/* Hero Section */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--dark);
}

/* Hero Background Image (uploaded by user) */
.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 1;
    /* opacity is set inline via customizer */
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    z-index: 2;
}

.hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, rgba(212, 225, 87, 0.03) 0%, transparent 70%);
    z-index: 3;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1200px;
    padding: 0 20px;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 8vw, 7rem);
    font-weight: 900;
    color: var(--white);
    margin-bottom: 1rem;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 4px;
}

/* Hero Logo Image */
.hero-logo-container {
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease-out;
}

.hero-logo-image {
    max-width: 600px;
    width: 90%;
    height: auto;
    display: block;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .hero-logo-image {
        max-width: 400px;
        width: 95%;
    }
}

@media (max-width: 480px) {
    .hero-logo-image {
        max-width: 280px;
    }
}

.hero-subtitle {
    font-size: clamp(1.2rem, 3vw, 2rem);
    color: var(--light-beige);
    margin-bottom: 2.5rem;
    font-weight: 300;
    letter-spacing: 1px;
    animation: fadeInUp 1s ease-out 0.3s both;
}

.hero-cta {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.btn {
    display: inline-block;
    padding: 18px 45px;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--accent-yellow);
    color: var(--dark);
    border-color: var(--accent-yellow);
    box-shadow: var(--shadow-yellow);
}

.btn-primary:hover {
    background: var(--accent-yellow-dark);
    border-color: var(--accent-yellow-dark);
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(212, 225, 87, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background: var(--white);
    color: var(--dark);
    transform: translateY(-2px);
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 10;
}

.scroll-indicator svg {
    width: 30px;
    height: 50px;
    fill: none;
    stroke: var(--light-beige);
    stroke-width: 2;
}

.back-to-top {
    position: fixed;
    right: 24px;
    bottom: 24px;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.25);
    background: rgba(0, 0, 0, 0.75);
    color: var(--accent-yellow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    cursor: pointer;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.3s ease;
    z-index: 1100;
}

.back-to-top.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.back-to-top:hover {
    border-color: var(--accent-yellow);
    background: rgba(0, 0, 0, 0.9);
}

@media (max-width: 640px) {
    .back-to-top {
        right: 16px;
        bottom: 16px;
        width: 48px;
        height: 48px;
    }
}

/* Features Section */
.features-section {
    padding: 100px 20px;
    background: var(--light-beige);
    position: relative;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 60px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-card {
    background: var(--white);
    border-radius: 16px;
    padding: 50px 30px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    position: relative;
    border: 1px solid transparent;
}


.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    background: var(--dark);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: var(--white);
    transition: all 0.3s ease;
}


.feature-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--dark);
    letter-spacing: 1px;
    text-transform: uppercase;
}

.feature-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: var(--medium-gray);
    font-weight: 300;
}

/* Timetable Section */
.timetable-section {
    padding: 100px 20px;
    background: var(--white);
    position: relative;
}

.timetable-container {
    max-width: 900px;
    margin: 0 auto;
}

.timetable-grid {
    margin-top: 50px;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid var(--light-beige);
}

.timetable-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid var(--light-beige);
    transition: all 0.3s ease;
}

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

.timetable-row:hover {
    background: var(--lighter-beige);
}

.timetable-row.today {
    background: var(--accent-yellow);
    border-color: var(--accent-yellow-dark);
}

.timetable-row.today:hover {
    background: var(--accent-yellow-dark);
}

.timetable-row.closed {
    opacity: 0.5;
}

.timetable-row.closed:hover {
    background: transparent;
}

.timetable-day {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.today-badge {
    background: var(--dark);
    color: var(--accent-yellow);
    font-size: 0.75rem;
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.timetable-hours {
    font-size: 1rem;
    font-weight: 600;
    color: var(--medium-gray);
    letter-spacing: 0.5px;
}

.timetable-row.today .timetable-day,
.timetable-row.today .timetable-hours {
    color: var(--dark);
}

.closed-text {
    color: var(--medium-gray);
    font-style: italic;
}

.timetable-note {
    margin-top: 40px;
    text-align: center;
    padding: 25px;
    background: var(--lighter-beige);
    border-radius: 16px;
    border-left: 4px solid var(--accent-yellow);
}

.timetable-note p {
    font-size: 1rem;
    color: var(--medium-gray);
    margin: 0;
    line-height: 1.6;
}

.timetable-note strong {
    color: var(--dark);
    font-weight: 700;
}

/* News Section */
.news-section {
    padding: 100px 20px;
    background: var(--light-beige);
    position: relative;
    overflow: hidden;
}

.news-container {
    max-width: 1400px;
    margin: 0 auto;
}

.news-scroll-container {
    margin-top: 50px;
    margin-bottom: 40px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1400px;
    margin: 0 auto;
}

.news-card {
    width: 100%;
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    border: 1px solid transparent;
}


.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: var(--lighter-beige);
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}


.news-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
}

.placeholder-content {
    font-size: 4rem;
    opacity: 0.3;
}

.news-category {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--accent-yellow);
    color: var(--dark);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    margin-bottom: 12px;
}

.news-meta time {
    font-size: 0.85rem;
    color: var(--medium-gray);
    font-weight: 500;
    letter-spacing: 0.5px;
}

.news-title {
    margin-bottom: 12px;
    flex: 0;
}

.news-title a {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}


.news-excerpt {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--medium-gray);
    margin-bottom: 20px;
    flex: 1;
}

.news-read-more {
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}


.news-no-posts {
    text-align: center;
    padding: 60px 20px;
    color: var(--medium-gray);
    font-size: 1.1rem;
}

.news-cta {
    text-align: center;
    margin-top: 50px;
}

/* Social Media Section */
.social-section {
    padding: 80px 20px;
    background: var(--white);
    text-align: center;
}

.social-container {
    max-width: 1000px;
    margin: 0 auto;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.social-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px;
    background: var(--white);
    border: 2px solid var(--light-beige);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 140px;
    box-shadow: var(--shadow-soft);
}

.social-link:hover {
    transform: translateY(-8px);
    border-color: var(--accent-yellow);
    box-shadow: var(--shadow-yellow);
    background: var(--lighter-beige);
}

.social-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.social-icon svg {
    width: 28px;
    height: 28px;
    color: var(--white);
    transition: color 0.3s ease;
}

.social-link:hover .social-icon {
    background: var(--accent-yellow);
    transform: scale(1.1) rotate(5deg);
}

.social-link:hover .social-icon svg {
    color: var(--dark);
}

.social-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--dark);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-empty {
    color: var(--medium-gray);
    font-size: 1.1rem;
    padding: 40px;
}

/* Specific social network colors on hover (optional) */
.social-instagram:hover .social-icon {
    background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%);
}

.social-facebook:hover .social-icon {
    background: #1877f2;
}

.social-twitter:hover .social-icon {
    background: #000000;
}

.social-youtube:hover .social-icon {
    background: #ff0000;
}

.social-tiktok:hover .social-icon {
    background: #000000;
}

.social-linkedin:hover .social-icon {
    background: #0077b5;
}

.social-instagram:hover .social-icon svg,
.social-facebook:hover .social-icon svg,
.social-twitter:hover .social-icon svg,
.social-youtube:hover .social-icon svg,
.social-tiktok:hover .social-icon svg,
.social-linkedin:hover .social-icon svg {
    color: var(--white);
}

/* CTA Section */
.cta-section {
    padding: 100px 20px;
    background-color: var(--dark, #1a1a1a);
    text-align: center;
    color: var(--white, #ffffff);
    position: relative;
    overflow: hidden;
    clear: both;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 225, 87, 0.08) 0%, transparent 70%);
    transform: translate(-50%, -50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    color: var(--light-beige, #f0f0f0);
    font-weight: 300;
    line-height: 1.7;
}

.btn-cta {
    background: var(--accent-yellow, #00ff41);
    color: var(--dark, #1a1a1a);
    font-size: 1.1rem;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 2px;
    display: inline-block;
}

.btn-cta:hover {
    background: var(--accent-yellow-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-yellow);
}

/* Footer */
.site-footer {
    background: var(--dark-gray);
    color: var(--light-beige);
    padding: 60px 20px 30px;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--white);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 700;
}

.footer-section p,
.footer-section a {
    color: var(--light-beige);
    text-decoration: none;
    line-height: 1.9;
    transition: color 0.3s ease;
    font-weight: 300;
}

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

.footer-quick-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-quick-links li {
    margin: 0 0 6px;
}

.footer-quick-links li:last-child {
    margin-bottom: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.footer-bottom p {
    margin-bottom: 10px;
}

.footer-credit {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 8px;
}

.footer-credit a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

.footer-credit a:hover {
    color: var(--accent-yellow);
    border-bottom-color: var(--accent-yellow);
}

/* Blog Archive Page */
.blog-page {
    background: var(--light-beige);
    min-height: 100vh;
}

.blog-header {
    background: var(--dark);
    padding: 120px 20px 80px;
    text-align: center;
    color: var(--white);
}

.blog-header-container {
    max-width: 900px;
    margin: 0 auto;
}

.blog-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.blog-description {
    font-size: 1.2rem;
    color: var(--light-beige);
    max-width: 700px;
    margin: 0 auto;
}

.blog-posts-section {
    padding: 80px 20px;
}

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

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.blog-post-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.blog-post-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-yellow);
}

.blog-post-image {
    position: relative;
    height: 250px;
    overflow: hidden;
    background: var(--lighter-beige);
}

.blog-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.blog-post-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-yellow);
    color: var(--dark);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.blog-post-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-post-meta {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-weight: 500;
}

.meta-separator {
    margin: 0 8px;
    opacity: 0.5;
}

.blog-post-title {
    margin-bottom: 15px;
}

.blog-post-title a {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.blog-post-title a:hover {
    color: var(--accent-yellow-dark);
}

.blog-post-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--medium-gray);
    margin-bottom: 20px;
    flex: 1;
}

.blog-read-more {
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.blog-read-more:hover {
    color: var(--accent-yellow-dark);
    gap: 10px;
}

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

.blog-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.blog-pagination a,
.blog-pagination span {
    padding: 12px 20px;
    background: var(--white);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--light-beige);
}

.blog-pagination a:hover {
    background: var(--accent-yellow);
    color: var(--dark);
    border-color: var(--accent-yellow);
    transform: translateY(-2px);
}

.blog-pagination .current {
    background: var(--dark);
    color: var(--accent-yellow);
    border-color: var(--dark);
}

.blog-no-posts {
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.blog-no-posts h2 {
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 15px;
}

.blog-no-posts p {
    color: var(--medium-gray);
    margin-bottom: 30px;
}

/* Single Post Page */
.single-post-page {
    background: var(--light-beige);
}

.single-article {
    background: var(--white);
}

.article-header {
    background: var(--dark);
    padding: 120px 20px 60px;
    text-align: center;
    color: var(--white);
}

.article-header-container {
    max-width: 900px;
    margin: 0 auto;
}

.article-category {
    margin-bottom: 20px;
}

.article-category a {
    display: inline-block;
    background: var(--accent-yellow);
    color: var(--dark);
    padding: 10px 25px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.article-category a:hover {
    background: var(--accent-yellow-dark);
    transform: translateY(-2px);
}

.article-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 25px;
}

.article-meta {
    font-size: 1rem;
    color: var(--light-beige);
    font-weight: 500;
}

.article-featured-image {
    width: 100%;
    max-height: 600px;
    overflow: hidden;
    background: var(--lighter-beige);
}

.article-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px;
}

.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.article-content h2,
.article-content h3,
.article-content h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    margin-top: 2em;
    margin-bottom: 1em;
    font-weight: 700;
}

.article-content h2 {
    font-size: 2rem;
    border-left: 4px solid var(--accent-yellow);
    padding-left: 20px;
}

.article-content h3 {
    font-size: 1.5rem;
}

.article-content p {
    margin-bottom: 1.5em;
}

.article-content a {
    color: var(--accent-yellow-dark);
    font-weight: 600;
    text-decoration: underline;
}

.article-content a:hover {
    color: var(--dark);
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2em 0;
}

.article-content blockquote {
    border-left: 4px solid var(--accent-yellow);
    padding: 20px 30px;
    margin: 2em 0;
    background: var(--lighter-beige);
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.article-tags {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid var(--light-beige);
}

.tags-label {
    font-weight: 700;
    color: var(--dark);
    margin-right: 10px;
}

.article-tags a {
    display: inline-block;
    background: var(--lighter-beige);
    color: var(--dark);
    padding: 6px 15px;
    border-radius: 50px;
    font-size: 0.85rem;
    text-decoration: none;
    margin: 5px;
    transition: all 0.3s ease;
    font-weight: 600;
}

.article-tags a:hover {
    background: var(--accent-yellow);
    color: var(--dark);
}

.article-author-bio {
    margin-top: 50px;
    padding: 30px;
    background: var(--lighter-beige);
    border-radius: 16px;
    display: flex;
    gap: 25px;
    align-items: center;
}

.author-avatar img {
    border-radius: 50%;
    border: 3px solid var(--accent-yellow);
}

.author-name {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 8px;
}

.author-description {
    color: var(--medium-gray);
    line-height: 1.6;
}

.article-navigation {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--light-beige);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.nav-previous,
.nav-next {
    padding: 25px;
    background: var(--lighter-beige);
    border-radius: 16px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.nav-previous:hover,
.nav-next:hover {
    background: var(--white);
    border-color: var(--accent-yellow);
    transform: translateY(-3px);
}

.nav-label {
    display: block;
    font-size: 0.85rem;
    color: var(--medium-gray);
    margin-bottom: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-previous a,
.nav-next a {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    line-height: 1.3;
    display: block;
}

.nav-next {
    text-align: right;
}


/* Social Section */
.social-section {
    padding: 100px 20px;
    background: var(--white);
    position: relative;
    text-align: center;
}

.social-section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.social-feed-wrapper {
    margin-top: 50px;
}

/* Social Buttons Row */
.social-buttons-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-top: 48px;
    flex-wrap: wrap;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 28px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    border: 2px solid currentColor;
    transition: background 0.22s ease, color 0.22s ease, transform 0.18s ease, box-shadow 0.22s ease;
    color: var(--dark);
    background: transparent;
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    text-decoration: none;
}

.social-btn__icon {
    display: flex;
    align-items: center;
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.social-btn__icon svg {
    width: 100%;
    height: 100%;
}

/* Instagram */
.social-btn--instagram {
    color: #c13584;
    border-color: #c13584;
}
.social-btn--instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: var(--white);
    border-color: transparent;
}

/* Facebook */
.social-btn--facebook {
    color: #1877f2;
    border-color: #1877f2;
}
.social-btn--facebook:hover {
    background: #1877f2;
    color: var(--white);
    border-color: #1877f2;
}

/* Google My Business */
.social-btn--google {
    color: #4285f4;
    border-color: #4285f4;
}
.social-btn--google:hover {
    background: #4285f4;
    color: var(--white);
    border-color: #4285f4;
}

@media (max-width: 600px) {
    .social-buttons-row {
        flex-direction: column;
        align-items: stretch;
        gap: 14px;
    }
    .social-btn {
        justify-content: center;
    }
}

/* Gallery Section (Homepage) */
.gallery-section {
    padding: 100px 20px;
    background: var(--lighter-beige);
    position: relative;
}

.gallery-container {
    max-width: 1400px;
    margin: 0 auto;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 50px;
}

.gallery-item {
    position: relative;
    height: 280px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    border: 2px solid transparent;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-yellow);
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.7) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.gallery-icon {
    font-size: 3rem;
    filter: grayscale(1) brightness(2);
    opacity: 0.9;
}

.gallery-cta {
    text-align: center;
    margin-top: 50px;
}

/* Gallery Page Template */
.gallery-page {
    background: var(--light-beige);
    min-height: 100vh;
}

.gallery-page-header {
    background: var(--dark);
    padding: 120px 20px 80px;
    text-align: center;
    color: var(--white);
}

.gallery-page-header-container {
    max-width: 900px;
    margin: 0 auto;
}

.gallery-page-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.gallery-page-description {
    font-size: 1.2rem;
    color: var(--light-beige);
    max-width: 700px;
    margin: 0 auto;
}

.gallery-page-content {
    padding: 80px 20px;
}

.gallery-page-container {
    max-width: 1600px;
    margin: 0 auto;
}

.gallery-page-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
}

.gallery-page-item {
    position: relative;
    height: 320px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-soft);
    border: 3px solid transparent;
}

.gallery-page-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-yellow);
    border-color: var(--accent-yellow);
}

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

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

.gallery-page-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

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

.gallery-page-icon {
    font-size: 3.5rem;
    margin-bottom: 10px;
    filter: grayscale(1) brightness(2);
    opacity: 0.9;
}

.gallery-page-caption {
    color: var(--white);
    text-align: center;
    font-size: 0.95rem;
    font-weight: 500;
}

.gallery-page-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
}

.gallery-page-empty p {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 30px;
}

/* Lightbox Modal */
.lightbox-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    opacity: 1;
    animation: lightboxFadeIn 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

#lightbox-image {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transition: opacity 0.2s ease;
}

.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-yellow);
    color: var(--dark);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 1px;
    box-shadow: var(--shadow-yellow);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: var(--accent-yellow);
    color: var(--dark);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-yellow);
    z-index: 10001;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--accent-yellow-dark);
    transform: scale(1.1);
}

.lightbox-close {
    top: 30px;
    right: 30px;
    font-size: 2.5rem;
    font-weight: 300;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    padding-bottom: 5px;
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 3rem;
    padding-bottom: 5px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    transform: translateY(-50%) scale(1.1);
}

@keyframes lightboxFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Regular Page Template */
.page-template {
    background: var(--light-beige);
}

.page-article {
    background: var(--white);
}

.page-header {
    background: var(--dark);
    padding: 120px 20px 60px;
    text-align: center;
    color: var(--white);
}

.page-header-container {
    max-width: 900px;
    margin: 0 auto;
}

.page-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
}

.page-featured-image {
    width: 100%;
    max-height: 500px;
    overflow: hidden;
    background: var(--lighter-beige);
}

.page-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 20px;
}

.page-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.page-content h2,
.page-content h3,
.page-content h4 {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    margin-top: 2em;
    margin-bottom: 1em;
    font-weight: 700;
}

.page-content h2 {
    font-size: 2rem;
    border-left: 4px solid var(--accent-yellow);
    padding-left: 20px;
}

.page-content h3 {
    font-size: 1.5rem;
}

.page-content p {
    margin-bottom: 1.5em;
}

.page-content a {
    color: var(--accent-yellow-dark);
    font-weight: 600;
    text-decoration: underline;
}

.page-content a:hover {
    color: var(--dark);
}

.page-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2em 0;
}

.page-content blockquote {
    border-left: 4px solid var(--accent-yellow);
    padding: 20px 30px;
    margin: 2em 0;
    background: var(--lighter-beige);
    font-style: italic;
    border-radius: 0 8px 8px 0;
}

.page-content ul,
.page-content ol {
    margin: 1.5em 0;
    padding-left: 2em;
}

.page-content li {
    margin-bottom: 0.8em;
}


/* 404 Error Page */
.error-404-page {
    background: var(--light-beige);
    min-height: 100vh;
}

.error-404-section {
    padding: 80px 20px;
}

.error-404-container {
    max-width: 800px;
    margin: 0 auto;
}

.error-404-content {
    background: var(--white);
    padding: 60px 40px;
    border-radius: 16px;
    box-shadow: var(--shadow-medium);
    text-align: center;
}

.error-404-number {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(6rem, 15vw, 12rem);
    font-weight: 900;
    color: var(--accent-yellow);
    line-height: 1;
    margin-bottom: 20px;
    text-shadow: 4px 4px 0 var(--dark);
}

.error-404-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.error-404-text {
    font-size: 1.2rem;
    color: var(--medium-gray);
    margin-bottom: 40px;
    line-height: 1.6;
}

.error-404-search {
    margin: 40px 0;
    padding: 30px;
    background: var(--lighter-beige);
    border-radius: 12px;
}

.error-404-search h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.error-404-search form {
    display: flex;
    gap: 10px;
    max-width: 500px;
    margin: 0 auto;
}

.error-404-search input[type="search"] {
    flex: 1;
    padding: 12px 20px;
    border: 2px solid var(--light-beige);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
}

.error-404-search input[type="search"]:focus {
    border-color: var(--accent-yellow);
}

.error-404-search button {
    padding: 12px 30px;
    background: var(--dark);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
}

.error-404-search button:hover {
    background: var(--accent-yellow);
    color: var(--dark);
}

.error-404-links {
    margin: 40px 0;
}

.error-404-links h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.error-404-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.error-404-recent {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--light-beige);
}

.error-404-recent h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 20px;
    font-weight: 700;
}

.error-404-posts {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.error-404-post-item {
    padding: 15px 20px;
    background: var(--lighter-beige);
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.error-404-post-item:hover {
    background: var(--white);
    border-color: var(--accent-yellow);
    transform: translateX(5px);
}

.error-404-post-item a {
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease;
}

.error-404-post-item a:hover {
    color: var(--accent-yellow-dark);
}

.error-404-post-date {
    font-size: 0.9rem;
    color: var(--medium-gray);
}

/* Search Results Page */
.search-page {
    background: var(--light-beige);
    min-height: 100vh;
}

.search-header {
    background: var(--dark);
    padding: 120px 20px 60px;
    text-align: center;
    color: var(--white);
}

.search-header-container {
    max-width: 900px;
    margin: 0 auto;
}

.search-title {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 800;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.search-query {
    color: var(--accent-yellow);
    display: block;
    margin-top: 10px;
}

.search-results-count {
    font-size: 1.1rem;
    color: var(--light-beige);
    margin-bottom: 30px;
}

.search-form-container {
    max-width: 600px;
    margin: 0 auto;
}

.search-form-container form {
    display: flex;
    gap: 10px;
}

.search-form-container input[type="search"] {
    flex: 1;
    padding: 14px 25px;
    border: 2px solid var(--light-beige);
    border-radius: 50px;
    font-size: 1rem;
    outline: none;
    transition: all 0.3s ease;
    background: var(--white);
}

.search-form-container input[type="search"]:focus {
    border-color: var(--accent-yellow);
}

.search-form-container button {
    padding: 14px 35px;
    background: var(--accent-yellow);
    color: var(--dark);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.search-form-container button:hover {
    background: var(--accent-yellow-dark);
    transform: translateY(-2px);
}

.search-results-section {
    padding: 80px 20px;
}

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

.search-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.search-result-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    display: flex;
    flex-direction: column;
}

.search-result-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-medium);
    border-color: var(--accent-yellow);
}

.search-result-image {
    height: 200px;
    overflow: hidden;
    background: var(--lighter-beige);
}

.search-result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.search-result-card:hover .search-result-image img {
    transform: scale(1.05);
}

.search-result-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.search-result-meta {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin-bottom: 15px;
    font-weight: 500;
}

.search-result-type {
    background: var(--accent-yellow);
    color: var(--dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-result-title {
    margin-bottom: 15px;
}

.search-result-title a {
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.search-result-title a:hover {
    color: var(--accent-yellow-dark);
}

.search-result-excerpt {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--medium-gray);
    margin-bottom: 20px;
    flex: 1;
}

.search-result-link {
    font-weight: 700;
    color: var(--dark);
    text-decoration: none;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.search-result-link:hover {
    color: var(--accent-yellow-dark);
    gap: 10px;
}

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

.search-pagination .nav-links {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.search-pagination a,
.search-pagination span {
    padding: 12px 20px;
    background: var(--white);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid var(--light-beige);
}

.search-pagination a:hover {
    background: var(--accent-yellow);
    color: var(--dark);
    border-color: var(--accent-yellow);
    transform: translateY(-2px);
}

.search-pagination .current {
    background: var(--dark);
    color: var(--accent-yellow);
    border-color: var(--dark);
}

.search-no-results {
    text-align: center;
    padding: 80px 40px;
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow-soft);
    max-width: 700px;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 5rem;
    margin-bottom: 20px;
    opacity: 0.3;
}

.search-no-results h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 800;
}

.search-no-results p {
    color: var(--medium-gray);
    margin-bottom: 30px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.search-suggestions {
    margin: 40px 0;
    padding: 30px;
    background: var(--lighter-beige);
    border-radius: 12px;
    text-align: left;
}

.search-suggestions h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.3rem;
    color: var(--dark);
    margin-bottom: 15px;
    font-weight: 700;
}

.search-suggestions ul {
    list-style-type: none;
    padding: 0;
}

.search-suggestions li {
    padding: 8px 0;
    padding-left: 30px;
    position: relative;
    color: var(--medium-gray);
}

.search-suggestions li:before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--accent-yellow);
    font-weight: 700;
}

.no-results-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 30px;
}

/* ================================
   BOOKING MODAL
   ================================ */

.booking-modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.82);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    animation: bookingOverlayIn 0.25s ease;
}

.booking-modal-overlay[hidden] {
    display: none;
}

@keyframes bookingOverlayIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.booking-modal-panel {
    position: relative;
    background: var(--accent-charcoal);
    border: 1px solid rgba(0, 255, 65, 0.18);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(255,255,255,0.04);
    max-width: 760px;
    width: 100%;
    padding: 72px 48px 48px;
    animation: bookingPanelIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes bookingPanelIn {
    from { opacity: 0; transform: translateY(24px) scale(0.96); }
    to   { opacity: 1; transform: translateY(0) scale(1); }
}

.booking-modal-close {
    position: absolute;
    top: 18px;
    right: 18px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.2);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    padding: 0;
}

.booking-modal-close svg {
    width: 18px;
    height: 18px;
}

.booking-modal-close:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: var(--dark);
    transform: rotate(90deg);
}

/* Two-column layout */
.booking-modal-body {
    display: flex;
    align-items: stretch;
    gap: 0;
}

.booking-modal-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Left column */
.booking-modal-stores {
    padding-right: 40px;
}

.booking-modal-heading {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.4;
}

.booking-modal-heading em {
    font-style: normal;
    color: var(--primary-color);
}

.booking-modal-heading-link {
    color: inherit;
    text-decoration: underline;
    text-underline-offset: 4px;
    text-decoration-thickness: 2px;
}

.booking-modal-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
}

.store-badge-link {
    display: block;
    transition: transform 0.2s ease, opacity 0.2s ease;
    border-radius: 10px;
    overflow: hidden;
    line-height: 0;
}

.store-badge-link:hover {
    transform: translateY(-3px);
    opacity: 0.88;
}

.store-badge-img {
    height: 52px;
    width: auto;
    display: block;
    max-width: 200px;
}

/* Divider */
.booking-modal-divider {
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0,255,65,0.3) 25%, rgba(0,255,65,0.3) 75%, transparent);
    flex-shrink: 0;
    margin: 0 4px;
    align-self: stretch;
}

/* Right column */
.booking-modal-contact {
    padding-left: 40px;
}

.booking-modal-contact-label {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(1rem, 2.2vw, 1.25rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.4;
}

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

.contact-icon-btn {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    flex-shrink: 0;
}

.contact-icon-btn svg {
    width: 28px;
    height: 28px;
}

.contact-icon-btn:hover {
    transform: translateY(-4px) scale(1.08);
    box-shadow: var(--shadow-lime);
    background: var(--primary-dark);
    color: var(--dark);
}

/* Mobile layout */
@media (max-width: 600px) {
    .booking-modal-panel {
        padding: 64px 24px 36px;
        border-radius: 20px;
    }

    .booking-modal-body {
        flex-direction: column;
        gap: 28px;
    }

    .booking-modal-stores {
        padding-right: 0;
        width: 100%;
    }

    .booking-modal-divider {
        width: 80%;
        height: 1px;
        margin: 0 auto;
        background: linear-gradient(to right, transparent, rgba(0,255,65,0.3) 25%, rgba(0,255,65,0.3) 75%, transparent);
        align-self: auto;
    }

    .booking-modal-contact {
        padding-left: 0;
        width: 100%;
    }

    .store-badge-img {
        height: 48px;
        max-width: 180px;
    }

    .contact-icon-btn {
        width: 62px;
        height: 62px;
    }

    .contact-icon-btn svg {
        width: 24px;
        height: 24px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

/* Responsive */

/* Tablet - 2 news cards visible */
@media (min-width: 769px) and (max-width: 1024px) {
    .news-scroll-container {
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding: 0 20px 20px 20px;
    }

    .news-scroll-container::-webkit-scrollbar {
        display: none;
    }

    .news-grid {
        display: flex;
        gap: 20px;
    }

    .news-card {
        min-width: calc(50% - 30px);
        scroll-snap-align: start;
        flex-shrink: 0;
    }
}

/* Mobile - 1 news card with peek */
@media (max-width: 768px) {
    .hero-section {
        min-height: 600px;
    }

    .hero-cta {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        padding: 16px 35px;
        font-size: 0.9rem;
        letter-spacing: 1px;
    }

    .btn-cta {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
        padding: 18px 40px;
        font-size: 1rem;
        white-space: normal;
        line-height: 1.4;
        min-height: 60px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    /* Hide 5th and 6th feature cards on mobile */
    .feature-card:nth-child(5),
    .feature-card:nth-child(6) {
        display: none;
    }

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

    /* Timetable responsive */
    .timetable-row {
        padding: 15px 20px;
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .timetable-day {
        font-size: 1rem;
    }

    .timetable-hours {
        font-size: 0.9rem;
        padding-left: 0;
    }

    .timetable-note {
        padding: 20px 15px;
    }

    .timetable-note p {
        font-size: 0.9rem;
    }

    /* News responsive - Mobile carousel with padding and peek */
    .news-scroll-container {
        overflow-x: scroll;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        padding: 0 20px 20px 20px;
    }

    .news-scroll-container::-webkit-scrollbar {
        display: none;
    }

    .news-grid {
        display: flex;
        gap: 15px;
    }

    .news-card {
        min-width: calc(100vw - 100px);
        scroll-snap-align: start;
        flex-shrink: 0;
    }

    .news-image {
        height: 200px;
    }

    .news-content {
        padding: 25px;
    }

    .news-title a {
        font-size: 1.1rem;
    }

    /* Social responsive */
    .social-links {
        gap: 15px;
    }

    .social-link {
        min-width: 120px;
        padding: 25px 20px;
    }

    .social-icon {
        width: 45px;
        height: 45px;
    }

    .social-icon svg {
        width: 24px;
        height: 24px;
    }

    .social-label {
        font-size: 0.85rem;
    }

    /* CTA section text */
    .cta-title {
        font-size: 2rem;
    }

    .cta-text {
        font-size: 1rem;
    }
}

/* Extra small devices */
@media (max-width: 480px) {
    .btn {
        padding: 14px 30px;
        font-size: 0.85rem;
        max-width: 280px;
    }

    .btn-cta {
        padding: 16px 35px;
        font-size: 0.95rem;
        max-width: 300px;
        margin: 0 auto;
        letter-spacing: 1px;
    }

    .cta-title {
        font-size: 1.75rem;
        line-height: 1.2;
    }

    .cta-text {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    /* Blog responsive */
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .blog-header {
        padding: 100px 20px 60px;
    }

    .article-header {
        padding: 100px 20px 50px;
    }

    .article-content-wrapper {
        padding: 40px 20px;
    }

    .article-author-bio {
        flex-direction: column;
        text-align: center;
    }

    .article-navigation {
        grid-template-columns: 1fr;
    }

    .nav-next {
        text-align: left;
    }

    /* Page template responsive */
    .page-header {
        padding: 100px 20px 50px;
    }

    .page-content-wrapper {
        padding: 40px 20px;
    }

    /* 404 page responsive */
    .error-404-content {
        padding: 40px 20px;
    }

    .error-404-number {
        font-size: 6rem;
    }

    .error-404-search form {
        flex-direction: column;
    }

    .error-404-buttons {
        flex-direction: column;
        align-items: center;
    }

    .error-404-post-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    /* Search page responsive */
    .search-header {
        padding: 100px 20px 50px;
    }

    .search-form-container form {
        flex-direction: column;
    }

    .search-results-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .search-no-results {
        padding: 60px 30px;
    }

    /* Gallery responsive */
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }

    .gallery-item {
        height: 250px;
    }

    .gallery-page-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }

    .gallery-page-item {
        height: 280px;
    }

    /* Lightbox responsive */
    .lightbox-close,
    .lightbox-prev,
    .lightbox-next {
        width: 45px;
        height: 45px;
        font-size: 1.8rem;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
    }

    .lightbox-prev {
        left: 20px;
    }

    .lightbox-next {
        right: 20px;
    }

    .lightbox-counter {
        font-size: 0.9rem;
        padding: 8px 20px;
    }

    #lightbox-image {
        max-height: 80vh;
    }
}
