:root {
    --primary-gold: #d4af37;
    --accent-gold: #f4e4a6;
    --deep-gold: #b8860b;
    --rose-gold: #e8b4b8;
    --dark-bg: #0a0a0a;
    --card-bg: #111111;
    --text-light: #f5f5f5;
    --text-muted: #b8b8b8;
    --gradient-primary: linear-gradient(135deg, #d4af37 0%, #f4e4a6 50%, #d4af37 100%);
    --gradient-gold: linear-gradient(45deg, #d4af37, #f4e4a6, #d4af37);
    --gradient-dark: linear-gradient(135deg, #000000 0%, #1a1a1a 50%, #0a0a0a 100%);
    --gradient-shine: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.4) 50%, transparent 100%);
}

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

html {
    overflow-x: hidden;
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    line-height: 1.6;
    width: 100%;
    max-width: 100vw;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: linear-gradient(180deg, #1a1a1a, #0a0a0a);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-primary);
    border-radius: 4px;
}

/* Loading Spinner */
.loading {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: var(--primary-gold);
    font-size: 18px;
    padding: 20px;
    text-align: center;
}

.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 3px solid rgba(212, 175, 55, 0.3);
    border-radius: 50%;
    border-top-color: var(--primary-gold);
    animation: spin 1s ease-in-out infinite;
    margin-right: 15px;
    flex-shrink: 0;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border-bottom: 2px solid transparent;
    border-image: var(--gradient-primary) 1;
    z-index: 1000;
    padding: 15px 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.navbar.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 30px rgba(212, 175, 55, 0.2);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 30px;
    position: relative;
    width: 100%;
}

.nav-container::before,
.nav-container::after {
    content: '◊';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-gold);
    font-size: 16px;
    opacity: 0.6;
}

.nav-container::before {
    left: 10px;
}

.nav-container::after {
    right: 10px;
}

.logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(24px, 4vw, 36px);
    font-weight: 400;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    z-index: 1001;
}

.logo::before {
    content: '◈';
    position: absolute;
    top: -8px;
    left: -25px;
    color: var(--primary-gold);
    font-size: 16px;
    animation: rotate 4s linear infinite;
}

.logo::after {
    content: '◈';
    position: absolute;
    top: -8px;
    right: -25px;
    color: var(--primary-gold);
    font-size: 16px;
    animation: rotate 4s linear infinite reverse;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

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

.nav-menu a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    padding: 8px 0;
    white-space: nowrap;
}

.nav-menu a::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 6px;
    height: 6px;
    background: var(--primary-gold);
    border-radius: 50%;
    transform: translateX(-50%) scale(0);
    transition: all 0.3s ease;
}

.nav-menu a:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.nav-menu a:hover::before {
    width: 100%;
}

.nav-menu a:hover::after {
    transform: translateX(-50%) scale(1);
}

.reserve-btn {
    padding: 10px 25px;
    background: var(--gradient-primary);
    color: #000;
    text-decoration: none;
    font-weight: 600;
    border-radius: 0;
    transition: all 0.4s ease;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 12px;
    position: relative;
    overflow: hidden;
    border: 2px solid var(--primary-gold);
    flex-shrink: 0;
    white-space: nowrap;
}

.reserve-btn::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: var(--gradient-shine);
    animation: shimmer 2s infinite;
    opacity: 0;
}

.reserve-btn:hover::before {
    opacity: 1;
}

@keyframes shimmer {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.reserve-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.4);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    font-size: 18px;
    padding: 8px 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
    z-index: 1001;
    position: relative;
}

.mobile-menu-toggle:hover {
    background: var(--primary-gold);
    color: #000;
}

/* Mobile Menu */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: min(300px, 80vw);
    height: 100vh;
    background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(26, 26, 26, 0.95));
    backdrop-filter: blur(20px);
    z-index: 1999;
    padding: 80px 20px 30px;
    transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 2px solid var(--primary-gold);
    overflow-y: auto;
}

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

.mobile-nav-links {
    list-style: none;
}

.mobile-nav-links li {
    margin-bottom: 20px;
}

.mobile-nav-links a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.mobile-nav-links a:hover {
    color: var(--primary-gold);
    padding-left: 15px;
    border-bottom-color: var(--primary-gold);
}

/* Page Container */
.page-container {
    min-height: 100vh;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.page {
    display: none;
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 600px;
    background: radial-gradient(circle at center, rgba(212, 175, 55, 0.1) 0%, transparent 70%),
                linear-gradient(135deg, rgba(0, 0, 0, 0.8) 0%, rgba(26, 26, 26, 0.9) 100%),
                url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1920 1080"><defs><pattern id="goldPattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23d4af37" opacity="0.3"/></pattern></defs><rect width="1920" height="1080" fill="url(%23goldPattern)"/></svg>');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 0 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at center, transparent 30%, rgba(212, 175, 55, 0.1) 70%);
}

.hero-ornaments {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.hero-ornament {
    position: absolute;
    color: var(--primary-gold);
    opacity: 0.2;
    font-size: clamp(40px, 8vw, 80px);
    animation: float 6s ease-in-out infinite;
}

.hero-ornament:nth-child(1) {
    top: 10%;
    left: 5%;
    animation-delay: 0s;
}

.hero-ornament:nth-child(2) {
    top: 20%;
    right: 8%;
    animation-delay: 2s;
}

.hero-ornament:nth-child(3) {
    bottom: 15%;
    left: 10%;
    animation-delay: 4s;
}

.hero-ornament:nth-child(4) {
    bottom: 25%;
    right: 5%;
    animation-delay: 1s;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.2; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 0.4; }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    z-index: 2;
    position: relative;
    padding: 0 15px;
    width: 100%;
}

.hero-crown {
    font-size: clamp(30px, 6vw, 50px);
    color: var(--primary-gold);
    margin-bottom: 15px;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from { text-shadow: 0 0 20px rgba(212, 175, 55, 0.5); }
    to { text-shadow: 0 0 40px rgba(212, 175, 55, 0.8); }
}

.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 3.5vw, 24px);
    color: var(--accent-gold);
    margin-bottom: 15px;
    font-weight: 300;
    letter-spacing: 2px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 8vw, 6rem);
    font-weight: 300;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1.1;
    position: relative;
}

.hero h1::before,
.hero h1::after {
    content: '◆◆◆';
    position: absolute;
    font-size: clamp(10px, 2vw, 16px);
    color: var(--primary-gold);
    opacity: 0.6;
}

.hero h1::before {
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.hero h1::after {
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
}

.hero-description {
    font-size: clamp(14px, 2.5vw, 18px);
    color: var(--text-muted);
    margin-bottom: 30px;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: clamp(15px, 3vw, 20px) clamp(30px, 6vw, 50px);
    background: transparent;
    border: 3px solid var(--primary-gold);
    color: var(--primary-gold);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(12px, 2.5vw, 16px);
    white-space: nowrap;
}

.hero-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.5s ease;
    z-index: -1;
}

.hero-cta:hover::before {
    left: 0;
}

.hero-cta:hover {
    color: #000;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.3);
}

/* Section Base */
.section {
    padding: clamp(60px, 10vw, 100px) 20px;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    width: 100%;
    overflow: hidden;
}

.section::before {
    content: '◊◊◊◊◊';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-gold);
    opacity: 0.3;
    font-size: clamp(12px, 2vw, 16px);
    letter-spacing: 10px;
}

.section-header {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 80px);
    position: relative;
}

.section-crown {
    font-size: clamp(25px, 5vw, 35px);
    color: var(--primary-gold);
    margin-bottom: 15px;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 6vw, 4rem);
    font-weight: 300;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    letter-spacing: 2px;
    position: relative;
}

.section-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(16px, 3vw, 20px);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
    font-style: italic;
    padding: 0 10px;
}

/* Luxury Dividers */
.luxury-divider {
    width: min(150px, 80vw);
    height: 2px;
    background: var(--gradient-primary);
    margin: 20px auto;
    position: relative;
}

.luxury-divider::before,
.luxury-divider::after {
    content: '◆';
    position: absolute;
    top: -8px;
    color: var(--primary-gold);
    font-size: 14px;
    background: var(--dark-bg);
    padding: 0 6px;
}

.luxury-divider::before {
    left: -8px;
}

.luxury-divider::after {
    right: -8px;
}

/* About Section */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 60px);
    align-items: center;
}

.about-content {
    position: relative;
    padding: clamp(20px, 4vw, 30px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.8), rgba(26, 26, 26, 0.6));
}

.about-content::before {
    content: '◆';
    position: absolute;
    top: -8px;
    left: -8px;
    color: var(--primary-gold);
    font-size: 14px;
    background: var(--dark-bg);
    padding: 3px;
}

.about-content::after {
    content: '◆';
    position: absolute;
    bottom: -8px;
    right: -8px;
    color: var(--primary-gold);
    font-size: 14px;
    background: var(--dark-bg);
    padding: 3px;
}

.about-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.4rem, 4vw, 2rem);
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
    font-weight: 400;
}

.about-content p {
    font-size: clamp(14px, 2.5vw, 16px);
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.about-image {
    height: clamp(300px, 40vw, 500px);
    background: var(--gradient-dark);
    border: 3px solid var(--primary-gold);
    position: relative;
    overflow: hidden;
}

.about-image::before {
    content: '◊';
    position: absolute;
    top: 50%;
    left: 50%;
    width: min(150px, 40vw);
    height: min(150px, 40vw);
    border: 2px solid var(--primary-gold);
    transform: translate(-50%, -50%) rotate(45deg);
    opacity: 0.4;
    font-size: clamp(20px, 4vw, 40px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-gold);
}

/* Services Section */
.services {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #111111 100%);
    margin: 0 -20px;
    padding: clamp(60px, 10vw, 100px) 20px;
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="luxPattern" x="0" y="0" width="50" height="50" patternUnits="userSpaceOnUse"><polygon points="25,5 30,20 45,20 35,30 40,45 25,35 10,45 15,30 5,20 20,20" fill="%23d4af37" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23luxPattern)"/></svg>');
    opacity: 0.3;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: clamp(20px, 4vw, 40px);
    margin-top: clamp(30px, 6vw, 60px);
    position: relative;
    z-index: 2;
    width: 100%;
}

.service-card {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(26, 26, 26, 0.8));
    border: 2px solid rgba(212, 175, 55, 0.3);
    padding: clamp(25px, 5vw, 40px) clamp(20px, 4vw, 30px);
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.5s ease;
}

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

.service-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-gold);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
}

.service-icon {
    width: clamp(50px, 8vw, 70px);
    height: clamp(50px, 8vw, 70px);
    background: var(--gradient-primary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(20px, 4vw, 35px);
    color: #000;
    position: relative;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    color: var(--text-light);
    margin-bottom: 15px;
    font-weight: 400;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.8;
    font-size: clamp(13px, 2.5vw, 15px);
}

/* Gallery Section */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(250px, 100%), 1fr));
    gap: clamp(15px, 3vw, 25px);
    margin-top: clamp(30px, 6vw, 60px);
    width: 100%;
}

.gallery-item {
    position: relative;
    height: clamp(200px, 30vw, 250px);
    background: var(--gradient-dark);
    border: 2px solid rgba(212, 175, 55, 0.3);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    width: 100%;
}

.gallery-item:hover {
    transform: scale(1.02);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(212, 175, 55, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

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

.gallery-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    padding: 20px 12px 12px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-item-overlay {
    transform: translateY(0);
}

.gallery-item-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(14px, 2.5vw, 18px);
    color: var(--primary-gold);
    margin-bottom: 6px;
}

.gallery-item-description {
    color: var(--text-muted);
    font-size: clamp(11px, 2vw, 13px);
    line-height: 1.6;
}

/* Events Section */
.events-list {
    margin-top: clamp(30px, 6vw, 60px);
    width: 100%;
}

.event-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: clamp(20px, 4vw, 40px);
    align-items: center;
    padding: clamp(20px, 4vw, 40px) clamp(15px, 3vw, 30px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-bottom: 20px;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.8), rgba(26, 26, 26, 0.6));
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: 100%;
}

.event-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background: var(--gradient-primary);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.event-item:hover::before {
    transform: scaleY(1);
}

.event-item:hover {
    transform: translateX(5px);
    border-color: var(--primary-gold);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.2);
}

.event-date {
    text-align: center;
    position: relative;
    min-width: clamp(80px, 15vw, 120px);
}

.event-date::before {
    content: '◆◆◆';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-gold);
    font-size: 8px;
    letter-spacing: 2px;
}

.event-day {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 5vw, 3rem);
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 300;
    line-height: 1;
}

.event-month {
    font-size: clamp(11px, 2vw, 14px);
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 6px;
}

.event-details {
    flex: 1;
    min-width: 0;
}

.event-details h4 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--text-light);
    margin-bottom: 8px;
    font-weight: 400;
}

.event-details p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: clamp(12px, 2.5vw, 15px);
}

.event-price {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    position: relative;
    white-space: nowrap;
}

.event-price::before {
    content: '€';
    position: absolute;
    left: -10px;
    top: 0;
    font-size: 0.8em;
}

/* Contact Section */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 60px);
    margin-top: clamp(30px, 6vw, 60px);
}

.contact-info {
    position: relative;
    padding: clamp(25px, 5vw, 40px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(26, 26, 26, 0.8));
}

.contact-info::before {
    content: '◊';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-gold);
    font-size: 20px;
    background: var(--dark-bg);
    padding: 0 10px;
}

.contact-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    font-weight: 400;
    text-align: center;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(26, 26, 26, 0.5);
    border-left: 3px solid var(--primary-gold);
    position: relative;
}

.contact-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gradient-primary);
    animation: glow 2s ease-in-out infinite alternate;
}

.contact-item-icon {
    width: 16px;
    color: var(--primary-gold);
    flex-shrink: 0;
    font-size: 14px;
}

.contact-item-text {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: clamp(12px, 2.5vw, 14px);
}

.contact-item-text strong {
    color: var(--primary-gold);
    display: block;
    margin-bottom: 4px;
    font-size: clamp(13px, 2.8vw, 15px);
}

.contact-form {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(26, 26, 26, 0.8));
    padding: clamp(25px, 5vw, 40px);
    border: 2px solid rgba(212, 175, 55, 0.3);
    position: relative;
}

.contact-form::before {
    content: '◈';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-gold);
    font-size: 20px;
    background: var(--dark-bg);
    padding: 0 10px;
}

.contact-form h3 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.3rem, 3.5vw, 1.8rem);
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 25px;
    font-weight: 400;
    text-align: center;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.form-group {
    margin-bottom: 15px;
    position: relative;
    width: 100%;
}

.form-control {
    width: 100%;
    padding: clamp(12px, 3vw, 15px) clamp(15px, 3vw, 20px);
    background: rgba(26, 26, 26, 0.8);
    border: 2px solid rgba(212, 175, 55, 0.2);
    color: var(--text-light);
    font-size: clamp(12px, 2.5vw, 14px);
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    box-sizing: border-box;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-gold);
    background: rgba(26, 26, 26, 0.9);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.submit-btn {
    width: 100%;
    padding: clamp(15px, 4vw, 20px);
    background: transparent;
    border: 3px solid var(--primary-gold);
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.5s ease;
    position: relative;
    overflow: hidden;
    font-size: clamp(12px, 2.5vw, 14px);
    font-family: 'Cormorant Garamond', serif;
}

.submit-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.5s ease;
    z-index: -1;
}

.submit-btn:hover::before {
    left: 0;
}

.submit-btn:hover {
    color: #000;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.3);
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 100%);
    padding: clamp(40px, 8vw, 60px) 20px clamp(20px, 4vw, 30px);
    border-top: 3px solid var(--primary-gold);
    text-align: center;
    position: relative;
    margin-top: clamp(40px, 8vw, 80px);
}

.footer::before {
    content: '◊◊◊◊◊◊◊';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-gold);
    font-size: clamp(12px, 2.5vw, 16px);
    background: var(--dark-bg);
    padding: 0 12px;
    letter-spacing: 6px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 10px;
}

.footer-text {
    color: var(--text-muted);
    font-size: clamp(11px, 2.2vw, 14px);
    line-height: 1.8;
    margin-bottom: 12px;
}

.footer-signature {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(13px, 2.8vw, 16px);
    color: var(--primary-gold);
    font-style: italic;
    margin-top: 15px;
}

.visitor-counter {
    margin-top: 30px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.9), rgba(26, 26, 26, 0.8));
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.visitor-counter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    animation: shimmer 2s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.counter-item {
    text-align: center;
    padding: 15px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.counter-item:hover {
    border-color: var(--primary-gold);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}

.counter-item .count {
    color: var(--primary-gold);
    font-size: 1.8rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.counter-item .label {
    color: var(--text-muted);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.counter-status {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    font-size: 12px;
    color: var(--text-muted);
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.status-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s ease-in-out infinite;
}

.status-indicator.offline {
    background: #ef4444;
    animation: none;
}

.status-indicator.connecting {
    background: #f59e0b;
    animation: blink 1s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

.status-indicator-global {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(17, 17, 17, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 20px;
    padding: 8px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: var(--text-muted);
    backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.status-indicator-global:hover {
    background: rgba(26, 26, 26, 0.95);
    border-color: var(--primary-gold);
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
    animation: pulse 2s ease-in-out infinite;
}

.status-text {
    font-weight: 500;
}

.visitor-counter > div {
    display: flex;
    justify-content: center;
    gap: clamp(15px, 4vw, 30px);
    flex-wrap: wrap;
}

.visitor-counter > div > div {
    text-align: center;
    min-width: clamp(60px, 12vw, 100px);
}

.visitor-counter .count {
    color: var(--primary-gold);
    font-size: clamp(14px, 3vw, 20px);
    font-weight: 600;
}

.visitor-counter .label {
    color: var(--text-muted);
    font-size: clamp(9px, 1.8vw, 11px);
    margin-top: 3px;
}

/* Event Detail Page */
.event-detail {
    padding: clamp(100px, 15vw, 120px) 20px clamp(60px, 10vw, 80px);
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.event-detail-header {
    text-align: center;
    margin-bottom: clamp(40px, 8vw, 60px);
}

.event-detail-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.8rem, 6vw, 4rem);
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 20px;
}

.event-detail-hero {
    margin-bottom: clamp(40px, 8vw, 60px);
    position: relative;
    height: clamp(250px, 50vw, 950px);
    border: 3px solid var(--primary-gold);
    overflow: hidden;
}

.event-banner {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(212, 175, 55, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.event-banner-text {
    text-align: center;
    color: var(--text-light);
}

.event-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    margin-bottom: 12px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
}

.event-banner-date {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--accent-gold);
}

.event-detail-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(30px, 6vw, 60px);
    margin-bottom: clamp(40px, 8vw, 60px);
}

.event-detail-content {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.8), rgba(26, 26, 26, 0.6));
    padding: clamp(25px, 5vw, 40px);
    border: 2px solid rgba(212, 175, 55, 0.3);
}

.back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--primary-gold);
    text-decoration: none;
    font-size: clamp(12px, 2.5vw, 14px);
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.back-btn:hover {
    transform: translateX(-3px);
}

/* VIP Packages Section */
.vip-packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(400px, 100%), 1fr));
    gap: clamp(30px, 6vw, 50px);
    margin-top: clamp(40px, 8vw, 60px);
    width: 100%;
}

.vip-package-card {
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.95), rgba(26, 26, 26, 0.9));
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    transition: all 0.4s ease;
    transform: translateY(0);
}

.vip-package-card.premium {
    border-color: var(--primary-gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(17, 17, 17, 0.95));
    transform: scale(1.05);
}

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

.vip-package-card.premium:hover {
    transform: scale(1.05) translateY(-8px);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.4);
}

.vip-package-badge {
    position: absolute;
    top: 35px;
    right: -45px;
    background: linear-gradient(135deg, #ff6b35, #f7931e);
    color: white;
    padding: 8px 45px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transform: rotate(45deg);
    z-index: 10;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
}

.vip-package-header {
    text-align: center;
    padding: 40px 30px 20px;
    position: relative;
}

.vip-package-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.vip-package-icon {
    font-size: 48px;
    margin-bottom: 15px;
    display: block;
    filter: drop-shadow(0 0 10px rgba(212, 175, 55, 0.5));
}

.vip-package-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.5rem, 4vw, 2rem);
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 8px;
    font-weight: 400;
}

.vip-package-subtitle {
    color: var(--text-muted);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
}

.vip-package-content {
    padding: 0 30px 40px;
}

.vip-package-price {
    text-align: center;
    margin-bottom: 30px;
    padding: 20px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.price-amount {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: block;
    line-height: 1;
}

.price-detail {
    color: var(--text-muted);
    font-size: 14px;
    margin-top: 5px;
    display: block;
}

.vip-package-features {
    list-style: none;
    margin-bottom: 30px;
}

.vip-package-features li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    padding: 12px;
    background: rgba(26, 26, 26, 0.5);
    border-radius: 8px;
    border-left: 3px solid var(--primary-gold);
    transition: all 0.3s ease;
}

.vip-package-features li:hover {
    background: rgba(26, 26, 26, 0.8);
    transform: translateX(5px);
}

.feature-icon {
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.vip-package-features li span:last-child {
    color: var(--text-light);
    line-height: 1.5;
    font-size: 14px;
}

.vip-package-btn {
    width: 100%;
    padding: 18px 25px;
    background: transparent;
    border: 3px solid var(--primary-gold);
    color: var(--primary-gold);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    font-size: 14px;
    font-family: 'Cormorant Garamond', serif;
    border-radius: 8px;
}

.vip-package-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.4s ease;
    z-index: -1;
}

.vip-package-btn:hover::before {
    left: 0;
}

.vip-package-btn:hover {
    color: #000;
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.vip-package-btn.premium-btn {
    background: var(--gradient-primary);
    color: #000;
    border-color: var(--primary-gold);
}

.vip-package-btn.premium-btn::before {
    background: linear-gradient(135deg, #b8860b, #f4e4a6);
}

.vip-package-btn.premium-btn:hover {
    background: linear-gradient(135deg, #f4e4a6, #d4af37);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.5);
}

.vip-packages-note {
    margin-top: 50px;
    padding: 30px;
    background: linear-gradient(135deg, rgba(17, 17, 17, 0.8), rgba(26, 26, 26, 0.6));
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    text-align: center;
}

.vip-note-content h4 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    margin-bottom: 20px;
    font-size: 18px;
}

.vip-note-content p {
    color: var(--text-muted);
    margin-bottom: 8px;
    font-size: 14px;
    line-height: 1.6;
}

/* VIP Package Selection Animation */
.vip-package-card.selected {
    border-color: #22c55e;
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(17, 17, 17, 0.95));
    transform: scale(1.02);
}

.vip-package-card.selected::after {
    content: '✓';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 30px;
    height: 30px;
    background: #22c55e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 16px;
    z-index: 10;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 3000;
    padding: 20px;
}

.lightbox.active {
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    position: relative;
}

.lightbox img {
    width: 100%;
    height: auto;
    border: 3px solid var(--primary-gold);
    max-height: 90vh;
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -30px;
    right: 0;
    background: none;
    border: none;
    color: var(--primary-gold);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    transform: scale(1.2);
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(212, 175, 55, 0.2);
    border: 2px solid var(--primary-gold);
    color: var(--primary-gold);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 14px;
}

.lightbox-nav:hover {
    background: var(--primary-gold);
    color: #000;
}

.lightbox-prev {
    left: -50px;
}

.lightbox-next {
    right: -50px;
}

/* Decorative Elements */
.ornament {
    position: absolute;
    color: var(--primary-gold);
    opacity: 0.3;
    pointer-events: none;
    font-size: clamp(12px, 3vw, 20px);
    animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
    0%, 100% { opacity: 0.3; text-shadow: 0 0 8px rgba(212, 175, 55, 0.3); }
    50% { opacity: 0.7; text-shadow: 0 0 15px rgba(212, 175, 55, 0.7); }
}

.sparkle {
    position: absolute;
    width: 3px;
    height: 3px;
    background: var(--primary-gold);
    border-radius: 50%;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 0; transform: scale(0); }
    50% { opacity: 1; transform: scale(1); }
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design - Tablet */
@media (max-width: 1024px) {
    .nav-container {
        padding: 0 25px;
    }
    
    .nav-container::before,
    .nav-container::after {
        display: none;
    }
    
    .about-grid,
    .contact-grid,
    .event-detail-info {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .event-item {
        grid-template-columns: auto 1fr auto;
        gap: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(280px, 100%), 1fr));
        gap: 25px;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(min(200px, 100%), 1fr));
        gap: 18px;
    }

    .services {
        margin: 0 -25px;
        padding: 70px 25px;
    }

    .hero {
        background-attachment: scroll;
    }

    .logo::before,
    .logo::after {
        font-size: 12px;
        top: -6px;
    }

    .logo::before {
        left: -20px;
    }

    .logo::after {
        right: -20px;
    }
}

/* Responsive Design - Mobile */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: block;
    }

    .nav-menu,
    .reserve-btn {
        display: none;
    }
    
    .logo {
        font-size: 24px;
    }

    .logo::before,
    .logo::after {
        display: none;
    }

    .nav-container {
        padding: 0 15px;
    }

    .nav-container::before,
    .nav-container::after {
        display: none;
    }

    .services {
        margin: 0 -15px;
        padding: 50px 15px;
    }

    .event-detail {
        padding: 90px 15px 50px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .contact-form,
    .contact-info {
        padding: 20px 15px;
    }

    .hero {
        background-attachment: scroll;
        padding: 0 15px;
        min-height: 500px;
    }

    .hero-ornament {
        font-size: 40px;
    }

    .hero-content {
        padding: 0 10px;
    }

    .event-item {
        grid-template-columns: 1fr;
        gap: 15px;
        text-align: center;
        padding: 20px 15px;
    }

    .event-date {
        min-width: auto;
    }

    .event-detail-hero {
        height: 400px;
    }

    .about-image {
        height: 250px;
    }

    .gallery-item {
        height: 180px;
    }

    .service-card {
        padding: 20px 15px;
    }

    .lightbox {
        padding: 10px;
    }

    .lightbox-nav {
        display: none;
    }

    .lightbox-close {
        top: -25px;
        font-size: 18px;
    }
    .visitor-counter {
        padding: 20px 15px;
        margin-top: 20px;
    }

    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .counter-item {
        padding: 12px;
    }

    .counter-item .count {
        font-size: 1.4rem;
    }

    .counter-item .label {
        font-size: 10px;
    }

    .counter-status {
        flex-direction: column;
        gap: 10px;
    }

    .status-indicator-global {
        bottom: 15px;
        right: 15px;
        padding: 6px 12px;
    }


    .visitor-counter > div {
        gap: 15px;
        flex-direction: column;
    }

    .visitor-counter > div > div {
        min-width: auto;
    }

    .contact-item {
        gap: 12px;
        padding: 12px;
    }

    .section::before {
        letter-spacing: 6px;
        font-size: 12px;
    }

    .luxury-divider {
        width: 120px;
    }

    .luxury-divider::before,
    .luxury-divider::after {
        font-size: 12px;
        padding: 0 4px;
    }
    .vip-packages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .vip-package-card.premium {
        transform: none;
    }

    .vip-package-card.premium:hover {
        transform: translateY(-8px);
    }

    .vip-package-header {
        padding: 30px 20px 15px;
    }

    .vip-package-content {
        padding: 0 20px 30px;
    }

    .vip-packages-note {
        padding: 20px 15px;
        margin-top: 30px;
    }
}

/* Responsive Design - Small Mobile */
@media (max-width: 480px) {
    .counter-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .counter-item .count {
        font-size: 1.2rem;
    }
    .section {
        padding: 40px 10px;
    }

    .services {
        margin: 0 -10px;
        padding: 40px 10px;
    }

    .services-grid,
    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-form,
    .contact-info {
        padding: 15px 10px;
    }

    .event-detail-content {
        padding: 20px 12px;
    }

    .mobile-menu {
        width: min(260px, 85vw);
        padding: 70px 15px 20px;
    }

    .mobile-nav-links a {
        font-size: 14px;
        padding: 12px 0;
    }

    .hero-content {
        padding: 0 5px;
    }

    .nav-container {
        padding: 0 10px;
    }

    .hero {
        padding: 0 10px;
    }

    .lightbox-content {
        max-width: 95%;
        max-height: 95%;
    }

    .lightbox img {
        border-width: 2px;
    }

    .contact-item-icon {
        width: 14px;
        font-size: 12px;
    }

    .section::before {
        font-size: 10px;
        letter-spacing: 4px;
    }

    .footer {
        padding: 30px 10px 15px;
    }

    .footer::before {
        letter-spacing: 4px;
        font-size: 10px;
        padding: 0 8px;
    }

    .about-content,
    .event-detail-content {
        padding: 15px 10px;
    }
    .vip-package-header {
        padding: 25px 15px 10px;
    }

    .vip-package-content {
        padding: 0 15px 25px;
    }

    .vip-package-price {
        padding: 15px;
        margin-bottom: 20px;
    }

    .vip-package-features li {
        padding: 10px;
        gap: 10px;
    }

    .feature-icon {
        font-size: 16px;
    }

    .vip-package-features li span:last-child {
        font-size: 13px;
    }

    .vip-package-btn {
        padding: 15px 20px;
        font-size: 13px;
    }
}

/* Fix for very small screens */
@media (max-width: 360px) {
    .nav-container {
        padding: 0 8px;
    }

    .section {
        padding: 30px 8px;
    }

    .services {
        margin: 0 -8px;
        padding: 30px 8px;
    }

    .hero {
        padding: 0 8px;
    }

    .mobile-menu {
        width: min(240px, 90vw);
    }

    .contact-form,
    .contact-info {
        padding: 12px 8px;
    }

    .gallery-item {
        height: 150px;
    }

    .event-detail {
        padding: 80px 8px 40px;
    }
}