/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Luxury Medieval Color Palette */
    --primary-gold: #D4AF37;
    --secondary-gold: #B8860B;
    --luxury-red: #DC143C;
    --deep-red: #8B0000;
    --pure-black: #000000;
    --charcoal: #1a1a1a;
    --dark-gray: #2d2d2d;
    --pure-white: #FFFFFF;
    --ivory: #FFFFF0;
    --light-gray: #f8f8f8;
    --accent-burgundy: #800020;
    --royal-purple: #4B0082;
    
    /* Typography */
    --font-primary: 'Cinzel', serif;
    --font-secondary: 'Cormorant Garamond', serif;
    --font-luxury: 'Playfair Display', serif;
    
    /* Shadows and Effects */
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.15);
    --shadow-strong: 0 12px 40px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 20px rgba(212, 175, 55, 0.5);
    --shadow-red-glow: 0 0 20px rgba(220, 20, 60, 0.3);
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--ivory);
    background: var(--pure-black);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 2px solid var(--primary-gold);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.5);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    height: 80px;
    gap: 3rem;
}

.nav-logo h2 {
    font-family: var(--font-primary);
    color: var(--primary-gold);
    font-size: 1.6rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    white-space: nowrap;
    margin: 0;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
}

.nav-menu a {
    color: var(--pure-white);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-gold), var(--luxury-red));
    transition: width 0.3s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--primary-gold);
    text-shadow: 0 0 10px var(--primary-gold);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.4)),
                linear-gradient(135deg, var(--charcoal) 0%, var(--pure-black) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.video-overlay p {
    color: var(--primary-gold);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(220, 20, 60, 0.1), rgba(212, 175, 55, 0.1));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding: 0 20px;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: 5rem;
    color: var(--pure-white);
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.8);
    font-weight: 700;
    letter-spacing: 2px;
}

.hero-subtitle {
    font-family: var(--font-luxury);
    font-size: 1.8rem;
    color: var(--primary-gold);
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    font-weight: 600;
}

.hero-description {
    font-size: 1.2rem;
    color: var(--ivory);
    margin-bottom: 2.5rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1.2rem 2.5rem;
    border: none;
    border-radius: 5px;
    font-family: var(--font-primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 1rem;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--pure-black);
    box-shadow: var(--shadow-strong);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--primary-gold);
}

.btn-secondary:hover {
    background: var(--primary-gold);
    color: var(--pure-black);
    transform: translateY(-3px);
}

.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: var(--primary-gold);
    font-size: 2rem;
    animation: bounce 2s infinite;
    z-index: 3;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateX(-50%) translateY(0); }
    40% { transform: translateX(-50%) translateY(-10px); }
    60% { transform: translateX(-50%) translateY(-5px); }
}

/* Section Styles */
.section-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--pure-white);
    position: relative;
    font-weight: 700;
}

.section-subtitle {
    text-align: center;
    font-size: 1.2rem;
    color: var(--ivory);
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-gold), var(--luxury-red));
}

/* Facilities Section */
.facilities {
    padding: 8rem 0;
    background: var(--pure-black);
}

.facilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.facility-card {
    background: var(--pure-black);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.facility-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.facility-image img,
.type-image img,
.activity-image img,
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.facility-image img:hover,
.type-image img:hover,
.activity-image img:hover,
.gallery-item img:hover {
    transform: scale(1.05);
}

.facility-content {
    padding: 2rem;
}

.facility-content h3 {
    font-family: var(--font-primary);
    color: var(--pure-white);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.facility-content p {
    color: var(--ivory);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.facility-features {
    list-style: none;
}

.facility-features li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--ivory);
}

.facility-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--luxury-red);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Accommodations Section */
.accommodations {
    padding: 8rem 0;
    background: var(--pure-black);
}

.accommodation-types {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
}

.accommodation-type {
    display: flex;
    flex-direction: column;
    background: var(--pure-black);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.accommodation-type:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.type-image {
    height: 200px;
}

.type-content {
    padding: 2rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.type-content h3 {
    font-family: var(--font-primary);
    color: var(--pure-white);
    margin-bottom: 1rem;
    font-size: 1.8rem;
    font-weight: 600;
}

.type-content p {
    color: var(--ivory);
    margin-bottom: 1.5rem;
    line-height: 1.7;
    flex-grow: 1;
}

.type-details {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.detail {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--ivory);
    font-size: 0.9rem;
}

.detail i {
    color: var(--primary-gold);
    width: 16px;
}

/* Tiers Section */
.tiers {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--pure-black) 100%);
    color: var(--pure-white);
}

.tiers .section-title {
    color: var(--pure-white);
}

.tiers .section-subtitle {
    color: var(--ivory);
}

.tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.tier-card {
    background: var(--pure-black);
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    box-shadow: var(--shadow-strong);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    color: var(--pure-white);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.tier-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--dark-gray), var(--primary-gold));
}

.tier-card.knight::before {
    background: linear-gradient(90deg, var(--primary-gold), var(--luxury-red));
}

.tier-card.king::before {
    background: linear-gradient(90deg, var(--luxury-red), var(--primary-gold));
}

.tier-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.tier-header h3 {
    font-family: var(--font-primary);
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--pure-white);
    font-weight: 600;
}

.tier-price {
    font-size: 3.5rem;
    font-weight: bold;
    color: var(--primary-gold);
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.tier-price span {
    font-size: 1rem;
    color: var(--ivory);
    font-weight: normal;
}

.tier-features {
    list-style: none;
    margin-bottom: 2rem;
    text-align: left;
}

.tier-features li {
    padding: 0.7rem 0;
    position: relative;
    padding-left: 1.5rem;
    color: var(--ivory);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.tier-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--luxury-red);
    font-weight: bold;
    font-size: 1.2rem;
}

.btn-tier {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--pure-black);
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.btn-tier:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

/* Activities Section */
.activities {
    padding: 8rem 0;
    background: var(--pure-black);
}

.activities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
}

.activity-item {
    background: var(--pure-black);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.activity-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-strong);
}

.activity-image {
    height: 200px;
}

.activity-content {
    padding: 2rem;
}

.activity-content h3 {
    font-family: var(--font-primary);
    color: var(--pure-white);
    margin-bottom: 1rem;
    font-size: 1.5rem;
    font-weight: 600;
}

.activity-content p {
    color: var(--ivory);
    line-height: 1.7;
}

/* Gallery Section */
.gallery {
    padding: 8rem 0;
    background: var(--pure-black);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin-top: 4rem;
}

.gallery-item {
    height: 250px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    transition: all 0.3s ease;
    cursor: pointer;
}

.gallery-item:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-strong);
}

.gallery-item.main-gallery {
    grid-column: span 2;
    height: 300px;
}

/* Contact Section */
.contact {
    padding: 8rem 0;
    background: var(--pure-black);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--pure-black);
    border-radius: 15px;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--primary-gold);
    margin-top: 0.2rem;
}

.contact-item h4 {
    font-family: var(--font-primary);
    color: var(--pure-white);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.contact-item p {
    color: var(--ivory);
    line-height: 1.6;
}

.booking-form {
    background: var(--pure-black);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.booking-form h3 {
    font-family: var(--font-primary);
    color: var(--pure-white);
    margin-bottom: 2rem;
    font-size: 1.8rem;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    font-family: var(--font-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--pure-black);
    color: var(--ivory);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

/* Kickstarter Section */
.kickstarter {
    padding: 8rem 0;
    background: linear-gradient(135deg, var(--luxury-red) 0%, var(--deep-red) 100%);
    color: var(--pure-white);
    text-align: center;
}

.kickstarter .section-title {
    color: var(--pure-white);
}

.kickstarter-description {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.8;
    color: var(--ivory);
}

.kickstarter-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn-kickstarter {
    background: linear-gradient(45deg, var(--primary-gold), var(--secondary-gold));
    color: var(--pure-black);
    font-size: 1.2rem;
    padding: 1.3rem 3rem;
    font-weight: 600;
}

.btn-share {
    background: transparent;
    color: var(--pure-white);
    border: 2px solid var(--primary-gold);
    font-size: 1.2rem;
    padding: 1.3rem 3rem;
    font-weight: 600;
}

.btn-kickstarter:hover,
.btn-share:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

/* Footer */
.footer {
    background: var(--pure-black);
    color: var(--pure-white);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    font-family: var(--font-primary);
    color: var(--primary-gold);
    margin-bottom: 1rem;
    font-weight: 600;
}

.footer-section p {
    color: var(--ivory);
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: var(--ivory);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: var(--primary-gold);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--dark-gray);
    color: var(--ivory);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: var(--pure-black);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 2rem 0;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .gallery-item.main-gallery {
        grid-column: span 1;
    }
    
    .kickstarter-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .type-details {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .tier-price {
        font-size: 2.5rem;
    }
    
    .facilities-grid,
    .accommodation-types,
    .tiers-grid,
    .activities-grid {
        grid-template-columns: 1fr;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.facility-card,
.tier-card,
.activity-item,
.accommodation-type,
.gallery-item {
    animation: fadeInUp 0.6s ease-out;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--pure-black);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, var(--primary-gold), var(--luxury-red));
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, var(--luxury-red), var(--primary-gold));
}

/* Additional Luxury Effects */
.luxury-glow {
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
}

.text-glow {
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.gradient-text {
    background: linear-gradient(45deg, var(--primary-gold), var(--luxury-red));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}