/*
Theme Name: Pinjab Events
Theme URI: https://pinjabevents.com
Author: Antigravity
Description: A luxury event planning and Neggafa theme for Marrakech weddings.
Version: 1.0.1
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pinjabevents
*/

:root {
    --primary-color: #333333;
    /* Dark Grey for text */
    --secondary-color: #C5A080;
    /* Tan/Gold from button */
    --accent-color: #D4AF37;
    /* Metallic Gold for smaller accents */
    --text-color: #555555;
    --bg-color: #FFFFFF;
    --light-bg: #F9F9F9;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-color);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
}

/* WordPress Admin Bar Fixes */
body.admin-bar #header {
    top: 32px;
}

@media screen and (max-width: 782px) {
    body.admin-bar #header {
        top: 46px;
    }
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn-primary,
.btn-gold {
    display: inline-block;
    padding: 12px 35px;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    text-transform: capitalize;
    border: none;
    border-radius: 30px;
    /* Rounded button from image */
    color: white;
    background-color: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover,
.btn-gold:hover {
    background-color: #b08d6f;
    /* Darker shade of tan */
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(197, 160, 128, 0.4);
}

.subtitle {
    display: block;
    font-family: var(--font-heading);
    font-style: italic;
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 10px;
}

section {
    padding: 80px 0;
}

/* Visibility Classes for JS Animations */
.fade-in-section {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in-section.appear {
    opacity: 1 !important;
    transform: translateY(0) !important;
}

/* Top Bar */
#top-bar {
    background-color: #f8f1ea;
    /* Very light tan to match logo */
    padding: 8px 0;
    font-size: 0.85rem;
    color: #777;
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

#top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-info {
    display: flex;
    gap: 20px;
}

.top-info a {
    display: flex;
    align-items: center;
    gap: 6px;
    transition: color 0.3s ease;
}

.top-info a:hover {
    color: var(--secondary-color);
}

.top-info i {
    color: var(--secondary-color);
}

.top-right {
    display: flex;
    align-items: center;
    gap: 25px;
}

.language-switcher {
    display: flex;
    gap: 10px;
    font-weight: 600;
    color: #bbb;
    cursor: default;
}

.language-switcher span {
    cursor: pointer;
    transition: color 0.3s ease;
}

.language-switcher span.active,
.language-switcher span:hover {
    color: var(--secondary-color);
}

.top-social {
    display: flex;
    gap: 15px;
}

.top-social a {
    color: #999;
    transition: all 0.3s ease;
}

.top-social a:hover {
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Header */
#header {
    position: sticky;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.98);
    color: var(--primary-color);
    padding: 10px 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
}

#header.scrolled {
    padding: 5px 0;
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

#header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo img {
    height: 70px;
    width: auto;
    transition: height 0.3s ease;
}

#header.scrolled .logo img {
    height: 55px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links li {
    position: relative;
    padding: 10px 0;
}

.nav-links li a {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
}

.nav-links li a i {
    font-size: 0.7rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-links li:hover>a {
    color: var(--secondary-color);
}

.nav-links li:hover>a i {
    transform: rotate(180deg);
}

/* Dropdown Menu Styles */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: white;
    min-width: 220px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    padding: 15px 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu li {
    padding: 0;
}

.dropdown-menu li a {
    display: block;
    padding: 12px 25px;
    color: #555;
    font-size: 0.85rem;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.dropdown-menu li a:hover {
    background: var(--light-bg);
    color: var(--secondary-color);
    padding-left: 30px;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 25px;
}

.phone-link {
    font-weight: 600;
    font-size: 1rem;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-link i {
    color: var(--secondary-color);
}

.burger {
    display: none;
    cursor: pointer;
    z-index: 1001;
    /* Above mobile nav */
    padding: 10px;
}

.burger div {
    width: 28px;
    height: 2px;
    background-color: var(--primary-color);
    margin: 6px;
    transition: all 0.3s ease;
}


/* Hero Section - Cinematic Editorial */
#hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    overflow: hidden;
}

.hero-bg-parallax {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
    filter: brightness(0.85) contrast(1.1);
    /* Cinematic look */
    transform: scale(1.0);
    animation: zoomSlow 20s infinite alternate;
}

@keyframes zoomSlow {
    from {
        transform: scale(1.0);
    }

    to {
        transform: scale(1.1);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Subtle gradient to ensure text readability at bottom/center */
    background: radial-gradient(circle, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 1000px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* No Glass Card - Pure Text */
.hero-content .subtitle {
    font-size: 1rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
    display: block;
    animation: fadeInDown 1s ease;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 6rem;
    /* Massive size */
    line-height: 0.95;
    margin-bottom: 30px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 4px 60px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1.2s ease;
}

.hero-content p {
    font-size: 1.2rem;
    max-width: 600px;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
    line-height: 1.6;
    animation: fadeInUp 1.4s ease;
}

.btn-clean {
    font-size: 1.1rem;
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid white;
    padding-bottom: 5px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-clean:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    letter-spacing: 3px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0.6;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% {
        top: 10px;
        opacity: 1;
    }

    100% {
        top: 30px;
        opacity: 0;
    }
}

/* Services Section - Editorial Slider */
.section-header-minimal {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.section-header-minimal h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
    margin: 0;
}

.slider-controls {
    display: flex;
    gap: 10px;
}

.slider-btn {
    background: none;
    border: 1px solid #ddd;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
}

.slider-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.slider-wrapper {
    overflow: hidden;
}

.services-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

/* Editorial Cards */
.editorial-card {
    min-width: 320px;
    height: 500px;
    /* Tall portrait format */
    position: relative;
    border-radius: 4px;
    /* Minimal rounding */
    overflow: hidden;
    flex: 0 0 auto;
    cursor: pointer;
}

.img-full {
    width: 100%;
    height: 100%;
}

.img-full img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.editorial-card:hover .img-full img {
    transform: scale(1.1);
}

.card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0) 100%);
    color: white;
    transform: translateY(0);
    transition: transform 0.4s ease;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 50%;
    /* Gradient overlay height */
}

.card-overlay h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: white;
}

.card-overlay p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    font-weight: 300;
    opacity: 0;
    /* Hidden by default */
    transform: translateY(20px);
    transition: all 0.4s ease;
    height: 0;
}

.read-more {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.5);
    align-self: flex-start;
    padding-bottom: 3px;
    opacity: 0.8;
}

/* Hover Interaction: Reveal Text */
.editorial-card:hover .card-overlay p {
    opacity: 1;
    transform: translateY(0);
    height: auto;
    margin-bottom: 15px;
}

/* About Section */
.about-container {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 40px 20px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-family: var(--font-heading);
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 25px;
    line-height: 1.2;
}

.about-text p {
    margin-bottom: 30px;
    color: #555;
    font-size: 1.05rem;
}

.stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-item .count {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.stat-item .label {
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    color: #999;
}

.about-image {
    flex: 1;
    position: relative;
}

.about-image img {
    border-radius: 8px;
    box-shadow: 20px 20px 0 var(--secondary-color);
}

/* Testimonials */
#testimonials {
    background-color: #f9f9f9;
    /* Light grey instead of green */
    color: var(--primary-color);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#testimonials::before {
    display: none;
    /* Remove texture overlay or keep it subtle */
}

#testimonials .section-header h2 {
    color: var(--secondary-color);
}

.testimonials-slider {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.testimonial-card {
    background: white;
    padding: 40px;
    border: 1px solid #eee;
    max-width: 350px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
}

.testimonial-card .quote {
    font-style: italic;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.author h4 {
    color: var(--secondary-color);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.stars {
    color: var(--secondary-color);
}

/* Contact Section */
.contact-wrapper {
    display: flex;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    overflow: hidden;
    background: white;
    border: 1px solid #eee;
}

.contact-form {
    flex: 3;
    padding: 60px;
}

.contact-form h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 30px;
}

.form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group input,
textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #eee;
    border-radius: 4px;
    /* Consistent rounding */
    font-family: var(--font-body);
    font-size: 1rem;
    outline: none;
    transition: border-color 0.3s;
    background: #fdfdfd;
}

.form-group input:focus,
textarea:focus {
    border-color: var(--secondary-color);
    background: white;
}

.checkbox-group {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    font-size: 0.9rem;
    color: #666;
}

.checkbox-group input {
    width: auto;
    margin-right: 10px;
}

.contact-info {
    flex: 2;
    background-color: var(--secondary-color);
    /* Use tan here for contrast */
    color: white;
    padding: 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: white;
    margin-bottom: 20px;
}

.contact-info p {
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.7;
}

.info-block h4 {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.info-block a {
    display: block;
    margin-bottom: 5px;
}

.info-block a:hover {
    color: white;
    text-decoration: underline;
}

.social-links {
    margin-top: 30px;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    margin-right: 15px;
    transition: var(--transition);
    color: white;
}

.social-links a:hover {
    background-color: white;
    border-color: white;
    color: var(--secondary-color);
}

/* Footer */
footer {
    background-color: #111;
    color: #888;
    padding: 30px 0;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links {
    margin-bottom: 20px;
}

.footer-links a {
    margin: 0 15px;
    color: #ccc;
    text-transform: uppercase;
    font-size: 0.8rem;
}

.footer-links a:hover {
    color: var(--secondary-color);
}

/* Contact Form Enhancements */
.services-selection {
    margin: 25px 0;
    text-align: left;
}

.selection-title {
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-select {
    width: 100%;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: white;
    font-size: 1rem;
    color: var(--primary-color);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 15px;
    cursor: pointer;
    transition: var(--transition);
}

.service-select:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 10px rgba(197, 160, 128, 0.1);
}

.form-response {
    margin-top: 20px;
    padding: 15px;
    border-radius: 4px;
    font-size: 0.9rem;
    display: none;
}

.form-response.success {
    display: block;
    background: #e8f5e9;
    color: #2e7d32;
    border: 1px solid #c8e6c9;
}

.form-response.error {
    display: block;
    background: #ffebee;
    color: #c62828;
    border: 1px solid #ffcdd2;
}

/* Detailed Services Styles */
#services-detailed {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.detail-block {
    display: flex;
    align-items: center;
    gap: 80px;
    margin-bottom: 120px;
}

.detail-block.reverse {
    flex-direction: row-reverse;
}

.detail-content {
    flex: 1.2;
}

.detail-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    line-height: 1.1;
}

.detail-content p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: var(--text-color);
    max-width: 600px;
}

.detail-image {
    flex: 0.8;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.1);
}

.detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.detail-block:hover .detail-image img {
    transform: scale(1.05);
}

.detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.detail-item {
    padding: 20px;
    background: var(--light-bg);
    border-radius: 8px;
    transition: var(--transition);
}

.detail-item:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transform: translateY(-5px);
}

.detail-item i {
    font-size: 1.5rem;
    color: var(--secondary-color);
    margin-bottom: 15px;
    display: block;
}

.detail-item h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.detail-item p {
    font-size: 0.9rem;
    margin-bottom: 0;
    line-height: 1.5;
}

/* Modern Activities Section */
#activities {
    background-color: var(--light-bg);
}

.activities-intro {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.activities-intro h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    color: var(--primary-color);
    margin: 10px 0 20px;
}

.activities-modern-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 400px);
    gap: 30px;
}

.activity-box {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    color: white;
}

.activity-box.large {
    grid-row: span 2;
}

.activity-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.activity-box:hover img {
    transform: scale(1.1);
}

.activity-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    height: 60%;
}

.activity-tag {
    background: var(--secondary-color);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    align-self: flex-start;
    margin-bottom: 15px;
}

.activity-box h3 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 10px;
}

.activity-box p {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 20px;
    max-width: 400px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
}

.activity-box:hover p {
    opacity: 1;
    transform: translateY(0);
}

.activity-link {
    color: white;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: gap 0.3s ease;
}

.activity-link:hover {
    gap: 15px;
    color: var(--secondary-color);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes navLinkFade {
    from {
        opacity: 0;
        transform: translateX(50px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.mobile-only {
    display: none;
}

/* Responsive Styles */
@media (max-width: 991px) {
    #top-bar {
        display: none;
    }

    .about-container {
        flex-direction: column;
    }

    .contact-wrapper {
        flex-direction: column;
    }

    .header-action {
        display: none;
    }

    .burger {
        display: block;
    }

    .nav-links {
        position: fixed;
        right: 0px;
        height: 100vh;
        top: 0;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        width: 70%;
        transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
        padding: 100px 40px;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
        z-index: 999;
    }

    .nav-links li {
        width: 100%;
        opacity: 0;
        padding: 15px 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }

    .nav-links li:last-child {
        border-bottom: none;
    }

    .nav-links li a {
        font-size: 1.1rem;
        display: block;
        width: 100%;
    }

    .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        opacity: 1;
        visibility: visible;
        padding: 10px 0 10px 20px;
        display: none;
    }

    .dropdown:hover .dropdown-menu {
        display: block;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .hero-content h1 {
        font-size: 3.5rem;
    }

    .detail-block,
    .detail-block.reverse {
        flex-direction: column;
        gap: 40px;
        margin-bottom: 80px;
    }

    .detail-content h2 {
        font-size: 2.5rem;
    }

    .detail-grid {
        grid-template-columns: 1fr;
    }

    .activities-modern-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }

    .activity-box.large {
        grid-row: auto;
    }

    .activity-box {
        height: 400px;
    }

    .activity-box p {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-only {
        display: block;
        margin-top: 20px;
    }

    .logo img {
        height: 50px;
    }
}