/* ============================================
   ENRIQUEZA EVENTS - LUXURY DARK THEME
   ============================================ */

:root {
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-gold: #D4AF37;
    --color-gold-dark: #B8941F;
    --color-gold-light: #F4E4BC;
    --color-gray-dark: #1a1a1a;
    --color-gray: #333333;
    --color-gray-light: #666666;
    --font-primary: 'Playfair Display', serif;
    --font-secondary: 'Montserrat', sans-serif;
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-secondary);
    background-color: var(--color-black);
    color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2.5vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    font-size: clamp(1rem, 2vw, 1.125rem);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ============================================
   NAVIGATION
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    box-shadow: 0 2px 20px rgba(212, 175, 55, 0.1);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo img {
    height: 60px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    transition: var(--transition);
    display: block;
}

.logo:hover img {
    opacity: 0.9;
    transform: scale(1.02);
}

/* Fallback text logo (hidden when image loads) */
.logo-text,
.logo-subtext {
    display: none;
}

/* Show text if image fails to load - using image error handling in HTML */
.logo img[src=""] + .logo-text,
.logo img[onerror] + .logo-text {
    display: block;
    font-family: var(--font-primary);
    font-weight: 700;
    color: var(--color-white);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

.logo img[src=""] ~ .logo-subtext,
.logo img[onerror] ~ .logo-subtext {
    display: block;
    font-size: 0.875rem;
    letter-spacing: 4px;
    color: var(--color-gold);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--color-gold);
    margin: 3px 0;
    transition: var(--transition);
}

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

.nav-menu a {
    color: var(--color-white);
    font-weight: 500;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding: 0.5rem 0;
}

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

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--color-gold);
}

/* Mobile Navigation */
@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .logo img {
        height: 50px;
        max-width: 150px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 300px;
        height: 100vh;
        background: var(--color-black);
        flex-direction: column;
        padding: 5rem 2rem;
        gap: 2rem;
        transition: right 0.3s ease;
        border-left: 1px solid var(--color-gold);
    }

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

    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

.btn-primary:hover {
    background: var(--color-gold-dark);
    border-color: var(--color-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

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

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

.btn-outline {
    background: transparent;
    color: var(--color-gold);
    border-color: var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: var(--color-black);
    transform: translateY(-2px);
}

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

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%),
                url('../img/bg.jpg') center/cover;
    background-attachment: fixed;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 700;
    letter-spacing: 8px;
    margin-bottom: 1rem;
    color: var(--color-white);
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.8);
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    letter-spacing: 4px;
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-weight: 300;
}

.hero-description {
    font-size: clamp(1rem, 2vw, 1.25rem);
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--color-gold);
    font-size: 1.5rem;
    animation: bounce 2s infinite;
    z-index: 2;
}

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

/* ============================================
   SECTIONS
   ============================================ */

section {
    padding: 5rem 0;
}

.section-title {
    text-align: center;
    margin-bottom: 1rem;
    color: var(--color-white);
    position: relative;
    padding-bottom: 1rem;
}

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

.section-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 3rem;
    font-size: 1.125rem;
}

/* ============================================
   FEATURES SECTION
   ============================================ */

.features {
    background: var(--color-gray-dark);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.feature-icon {
    font-size: 3rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.feature-card h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.feature-card p {
    color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   PACKAGES SECTION
   ============================================ */

.packages-preview {
    background: var(--color-black);
}

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

.package-card {
    background: var(--color-gray-dark);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.package-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--color-gold);
    transform: scaleX(0);
    transition: var(--transition);
}

.package-card:hover::before {
    transform: scaleX(1);
}

.package-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-gold);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3);
}

.package-card.featured {
    border-color: var(--color-gold);
    border-width: 3px;
}

.package-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(212, 175, 55, 0.2);
    color: var(--color-gold);
    font-size: 0.75rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    border: 1px solid var(--color-gold);
}

.package-badge.gold {
    background: var(--color-gold);
    color: var(--color-black);
}

.package-card h3 {
    color: var(--color-white);
    margin-bottom: 1rem;
}

.package-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-gold);
    margin-bottom: 0.5rem;
    font-family: var(--font-primary);
}

.package-time {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.package-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.package-features li {
    padding: 0.5rem 0;
    color: rgba(255, 255, 255, 0.8);
    position: relative;
    padding-left: 1.5rem;
}

.package-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
}

/* ============================================
   GALLERY SECTION
   ============================================ */

.gallery-preview {
    background: var(--color-gray-dark);
}

.gallery-grid-preview {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    min-height: 300px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 4/3;
    cursor: pointer;
    background: var(--color-gray-dark);
    min-height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
    display: block;
    background: var(--color-gray-dark);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

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

.gallery-overlay i {
    font-size: 3rem;
    color: var(--color-gold);
}

/* ============================================
   SOCIAL MEDIA SECTION
   ============================================ */

.social-media {
    background: var(--color-black);
}

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

.social-feed {
    background: var(--color-gray-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 2rem;
}

.social-feed h3 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-feed h3 i {
    font-size: 1.5rem;
}

.feed-container {
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.feed-container .loading {
    color: rgba(255, 255, 255, 0.5);
}

.social-feed .btn {
    margin-top: 1rem;
}

.social-feed a {
    transition: var(--transition);
}

.social-feed a:hover {
    text-decoration: underline;
}

/* ============================================
   CTA SECTION
   ============================================ */

.cta-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%),
                url('../img/banner2.jpg') center/cover;
    background-attachment: fixed;
    text-align: center;
    position: relative;
    padding: 6rem 0;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.8);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    padding: 3rem 0 1rem;
}

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

.footer-section h3,
.footer-section h4 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-size: 1.25rem;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

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

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

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

.social-links a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    font-size: 1.25rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
    color: rgba(255, 255, 255, 0.5);
}

/* ============================================
   FORMS
   ============================================ */

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--color-white);
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 1rem;
    background: var(--color-gray-dark);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    color: var(--color-white);
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Contact Page Styles */
.contact-section {
    padding: 5rem 0;
    background: var(--color-black);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    margin-top: 3rem;
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

.contact-details {
    margin-bottom: 3rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    align-items: flex-start;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--color-gold);
    margin-top: 0.25rem;
    min-width: 24px;
}

.contact-item h4 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-item p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.25rem;
}

.contact-item a {
    color: var(--color-gold);
    transition: var(--transition);
}

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

.contact-item small {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

.social-contact {
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.social-contact h4 {
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.social-contact .social-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}

.social-contact .social-links a {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 1rem;
    padding: 0.75rem 1rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 5px;
    transition: var(--transition);
    color: var(--color-white);
    width: 100%;
    min-height: 50px;
}

.social-contact .social-links a i {
    font-size: 1.25rem;
    width: 24px;
    text-align: center;
}

.social-contact .social-links a:hover {
    background: var(--color-gold);
    color: var(--color-black);
    border-color: var(--color-gold);
    transform: translateX(5px);
}

.contact-forms {
    background: var(--color-gray-dark);
    padding: 2rem;
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.form-tabs {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.tab-btn {
    padding: 1rem 2rem;
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    font-weight: 600;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: var(--transition);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.875rem;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    margin-bottom: 2rem;
    color: var(--color-white);
}

@media (max-width: 968px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* About Page Styles */
.about-section {
    padding: 5rem 0;
    background: var(--color-black);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    margin-bottom: 1.5rem;
}

.about-text p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-features {
    padding: 5rem 0;
}

.about-owner {
    padding: 5rem 0;
    background: var(--color-black);
}

.owner-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.owner-info h2 {
    margin-bottom: 1rem;
}

.owner-info h3 {
    color: var(--color-gold);
    margin-bottom: 0.5rem;
}

.owner-title {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
    margin-bottom: 1.5rem;
}

.owner-info p {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

@media (max-width: 968px) {
    .about-content {
        grid-template-columns: 1fr;
    }
}

/* Policies Page Styles */
.policies-section {
    padding: 5rem 0;
    background: var(--color-black);
}

.policies-content {
    max-width: 900px;
    margin: 0 auto;
}

.policy-section {
    margin-bottom: 3rem;
    background: var(--color-gray-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    padding: 2rem;
    transition: var(--transition);
}

.policy-section:hover {
    border-color: rgba(212, 175, 55, 0.4);
}

.policy-section h2 {
    color: var(--color-gold);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.5rem;
}

.policy-section h2 i {
    font-size: 1.25rem;
}

.policy-content h3 {
    color: var(--color-white);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
    font-size: 1.125rem;
}

.policy-content ul {
    list-style: none;
    padding-left: 0;
}

.policy-content ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.policy-content ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--color-gold);
    font-weight: bold;
    font-size: 1.5rem;
    line-height: 1;
}

.policies-note {
    margin-top: 4rem;
    padding: 2rem;
    background: rgba(212, 175, 55, 0.1);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 10px;
    text-align: center;
}

.policies-note p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.policies-note i {
    color: var(--color-gold);
    margin-right: 0.5rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 768px) {
    section {
        padding: 3rem 0;
    }

    .hero {
        min-height: 500px;
    }

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

    .btn {
        width: 100%;
        max-width: 300px;
    }

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

    .gallery-grid-preview {
        grid-template-columns: 1fr;
    }

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

/* ============================================
   PACKAGES PAGE ADDITIONAL STYLES
   ============================================ */

.packages-section {
    padding: 5rem 0;
}

.package-optional {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.package-optional h4 {
    color: var(--color-gold);
    margin-bottom: 1rem;
    font-size: 1rem;
}

.package-optional ul {
    list-style: none;
    text-align: left;
}

.package-optional ul li {
    padding: 0.25rem 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.package-note {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(212, 175, 55, 0.1);
    border-left: 3px solid var(--color-gold);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.addons-section {
    padding: 5rem 0;
}

.addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.addon-item {
    text-align: center;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
    transition: var(--transition);
}

.addon-item:hover {
    transform: translateY(-5px);
    border-color: var(--color-gold);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.2);
}

.addon-item i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.addon-item h4 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.addon-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.addon-item small {
    color: rgba(255, 255, 255, 0.5);
    display: block;
    margin-top: 0.25rem;
}

.addons-note {
    margin-top: 3rem;
    text-align: center;
    padding: 1.5rem;
    background: rgba(255, 152, 0, 0.1);
    border: 1px solid rgba(255, 152, 0, 0.3);
    border-radius: 5px;
    color: rgba(255, 255, 255, 0.9);
}

.addons-note i {
    color: #FF9800;
    margin-right: 0.5rem;
}

.booking-info {
    padding: 5rem 0;
    background: var(--color-black);
}

.booking-content {
    text-align: center;
}

.booking-content h2 {
    margin-bottom: 3rem;
}

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

.booking-item {
    padding: 2rem;
    background: var(--color-gray-dark);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 10px;
}

.booking-item i {
    font-size: 2.5rem;
    color: var(--color-gold);
    margin-bottom: 1rem;
}

.booking-item h4 {
    color: var(--color-white);
    margin-bottom: 0.5rem;
}

.booking-item p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ============================================
   PAGE HEADER (for all pages)
   ============================================ */

.page-header {
    padding: 10rem 0 4rem;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%),
                url('../img/bg.jpg') center/cover;
    background-attachment: fixed;
    text-align: center;
    margin-top: 0;
    position: relative;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 0;
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 1rem;
    color: var(--color-white);
}

.page-header p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width: 768px) {
    .page-header {
        padding: 8rem 0 3rem;
    }
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

.mt-1 { margin-top: 1rem; }
.mt-2 { margin-top: 2rem; }
.mt-3 { margin-top: 3rem; }
.mb-1 { margin-bottom: 1rem; }
.mb-2 { margin-bottom: 2rem; }
.mb-3 { margin-bottom: 3rem; }

