:root {
    --primary-color: #D32F2F; /* Deep Red */
    --secondary-color: #FFFFFF; /* White */
    --accent-color: #1A1A1A; /* Dark Grey/Black */
    --text-color: #333333;
    --bg-color: #F5F5F5;
    --light-gray: #E0E0E0;
    --font-main: 'Outfit', sans-serif;
    --font-display: 'Playfair Display', serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    cursor: none; /* Custom cursor */
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden;
}

/* Lenis Recommended CSS */
html.lenis {
    height: auto;
}

.lenis.lenis-smooth {
    scroll-behavior: auto;
}

.lenis.lenis-smooth [data-lenis-prevent] {
    overscroll-behavior: contain;
}

.lenis.lenis-stopped {
    overflow: hidden;
}

.lenis.lenis-scrolling iframe {
    pointer-events: none;
}

/* Custom Cursor */
.cursor {
    width: 10px;
    height: 10px;
    background: var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: transform 0.1s;
}

.cursor-follower {
    width: 40px;
    height: 40px;
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    position: fixed;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform 0.3s, width 0.3s, height 0.3s;
}

#cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(211, 47, 47, 0.15), transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
}

/* Loader */
#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent-color);
    z-index: 10000;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--secondary-color);
}

.loader-content {
    text-align: center;
    width: 300px;
}

.loader-text {
    font-family: var(--font-display);
    font-size: 1.0rem;
    margin-bottom: 1rem;
    height: 1.5em; /* Fixed height to prevent jumping */
}

.loader-bar {
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.loader-progress {
    width: 0%;
    height: 100%;
    background: var(--primary-color);
    position: absolute;
    left: 0;
    top: 0;
}

/* Particles */
#particles {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 99; /* Behind nav but in front of content sometimes? or just behind everything? let's go high but pointer-events none */
    z-index: 1; /* Actually, let's keep it subtle in the background */
}

.particle {
    position: absolute;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.3;
}

/* Navigation - Floating Glass Pill */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.8rem 2rem;
    position: fixed;
    top: 2rem;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    z-index: 100;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 30px;
    vertical-align: middle;
    filter: drop-shadow(0 0 15px rgba(211, 47, 47, 0.8));
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Liquid Gloss Button */
.cta-button {
    padding: 1rem 2rem;
    background: rgba(211, 47, 47, 0.8);
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px; /* Rounded for liquid feel */
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    display: inline-block;
    box-shadow: 0 8px 32px 0 rgba(211, 47, 47, 0.3);
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px 0 rgba(211, 47, 47, 0.5);
    background: rgba(211, 47, 47, 1);
}

.cta-button span {
    position: relative;
    z-index: 2;
}

/* Hero Section */
header {
    height: 100vh;
    width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3); /* Darken for text readability */
}

.hero-content {
    color: var(--secondary-color);
    max-width: 800px;
    z-index: 1;
    position: relative;
    top: 50px; /* Push down slightly for better vertical centering */
}

.hero-label {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(20px);
}

h1 {
    font-family: var(--font-display);
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.hero-line-1, .hero-line-2 {
    opacity: 0; /* Hidden initially for animation */
}

.highlight-text {
    background: linear-gradient(90deg, #ff0000, #ff8080, #ff0000);
    background-size: 200% auto;
    color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
    animation: shine 3s linear infinite;
    text-shadow: 0 0 10px rgba(255, 0, 0, 0.5);
}

/* ... (skipping unchanged lines) ... */

/* Premium Footer */
#premium-footer {
    background: var(--secondary-color);
    color: var(--accent-color);
    padding: 6rem 5% 2rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 500px;
    opacity: 0;
    transform: translateY(20px);
}

.hero-stats {
    display: flex;
    gap: 4rem;
    margin-bottom: 3rem;
    opacity: 0;
    transform: translateY(20px);
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat .number {
    font-size: 2.5rem;
    font-weight: 700;
    font-family: var(--font-display);
}

.stat .label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* About Section */
#about {
    padding: 8rem 5%;
    background: var(--secondary-color);
}

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

.section-header {
    margin-bottom: 4rem;
}

.section-label {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

h2 {
    font-family: var(--font-display);
    font-size: 3.5rem;
    color: var(--accent-color);
}

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

.about-text p {
    font-size: 1.5rem;
    line-height: 1.6;
    color: var(--text-color);
    margin-bottom: 3rem;
}

.stats-grid {
    display: flex;
    gap: 4rem;
}

.stat-item h3 {
    font-size: 3rem;
    color: var(--primary-color);
    font-family: var(--font-display);
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.team-member {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    padding: 1rem;
    transition: transform 0.3s;
    border-radius: 15px;
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.05);
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.team-member::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(
        transparent, 
        var(--primary-color), 
        transparent 30%
    );
    animation: rotateBorder 4s linear infinite;
    z-index: -2;
}

.team-member::after {
    content: '';
    position: absolute;
    inset: 3px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 13px;
    z-index: -1;
}

.team-member:hover::before {
    animation-duration: 10s; /* Slow down on hover */
}

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

.team-member:hover {
    transform: translateY(-10px);
}

.member-img {
    width: 100%;
    height: 300px;
    overflow: hidden;
    margin-bottom: 1rem;
}

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

.team-member:hover .member-img img {
    transform: scale(1.1);
}

.member-info h3 {
    font-size: 1.2rem;
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.member-info p {
    font-size: 0.9rem;
    color: #666;
}

/* Projects Section */
#projects {
    padding: 8rem 5%;
    background: var(--accent-color);
    color: var(--secondary-color);
}

#projects h2 {
    color: var(--secondary-color);
}

.projects-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding-bottom: 2rem;
    scrollbar-width: none; /* Hide scrollbar Firefox */
}

.projects-slider::-webkit-scrollbar {
    display: none; /* Hide scrollbar Chrome */
}

.project-card {
    min-width: 400px;
    position: relative;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 15px;
}

.project-img {
    width: 100%;
    height: 500px;
    overflow: hidden;
    margin-bottom: 1.5rem;
}

.project-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.project-card:hover .project-img img {
    transform: scale(1.05);
}

.project-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
}

.project-info p {
    color: #aaa;
}

/* CTA Section */
#cta-section {
    padding: 10rem 5%;
    text-align: center;
    background: var(--secondary-color);
}

#cta-section h2 {
    margin-bottom: 1rem;
}

#cta-section p {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #666;
}





/* Premium Footer */
#premium-footer {
    background: var(--secondary-color);
    color: var(--accent-color);
    padding: 6rem 5% 2rem;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}



.footer-top {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 4rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.footer-brand-section {
    max-width: 400px;
}

.footer-logo img {
    height: 40px;
    margin-bottom: 1.5rem;
}

.footer-description {
    font-size: 1.1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 2rem;
}

.footer-socials {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    border: 1px solid var(--light-gray);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: var(--accent-color);
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.footer-links-section {
    display: flex;
    gap: 4rem;
}

.footer-col h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-col a {
    display: block;
    color: #555;
    text-decoration: none;
    margin-bottom: 0.8rem;
    transition: color 0.3s;
}

.footer-col a:hover {
    color: var(--primary-color);
}

.footer-divider {
    height: 1px;
    background: var(--light-gray);
    width: 100%;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

/* Animated Rainbow Grid Background */
#premium-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 200%;
    height: 200%;
    background-image: 
        linear-gradient(rgba(255, 0, 0, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 0, 0, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    animation: rainbowGrid 10s linear infinite;
    pointer-events: none;
    opacity: 0.5;
}

@keyframes rainbowGrid {
    0% { 
        filter: hue-rotate(0deg); 
        transform: translate(0, 0);
    }
    100% { 
        filter: hue-rotate(360deg); 
        transform: translate(-40px, -40px);
    }
}

.footer-brand-section .footer-description, 
.footer-col h4, 
.footer-bottom p {
    animation: glowText 3s ease-in-out infinite alternate;
}

@keyframes glowText {
    0% { text-shadow: 0 0 5px rgba(255, 255, 255, 0.1); }
    100% { text-shadow: 0 0 10px rgba(255, 255, 255, 0.5), 0 0 20px rgba(211, 47, 47, 0.5); }
}

.footer-brand-section p, .footer-col a {
    transition: all 0.3s ease;
}

.footer-col a:hover {
    color: var(--primary-color);
    transform: translateX(5px);
    text-shadow: 0 0 8px var(--primary-color);
}

.footer-bottom {
    text-align: center;
    color: #888;
    font-size: 0.9rem;
    position: relative;
    z-index: 1;
}

.footer-bottom p {
    color: var(--accent-color); /* Changed from primary-color to accent-color (dark) for better visibility */
    opacity: 0.8;
    margin-bottom: 0.5rem;
}

.footer-bottom .disclaimer {
    font-size: 0.75rem;
    opacity: 0.6;
    max-width: 600px;
    margin: 0.5rem auto 0;
}

/* Responsive */
@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .projects-slider {
        flex-direction: column;
    }
    
    .project-card {
        min-width: 100%;
    }
    
    nav {
        padding: 1.5rem 5%;
    }
    
    .nav-links {
        display: none; /* Simple hide for now, could add burger menu */
    }
}

/* Booking Page Styles */
.booking-container {
    min-height: 100vh;
    padding: 8rem 5% 4rem;
    background: radial-gradient(circle at 50% 50%, #2a2a2a 0%, #000000 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--secondary-color);
}

.booking-header {
    text-align: center;
    max-width: 600px;
    margin-bottom: 3rem;
}

.booking-header h1 {
    color: var(--secondary-color);
}

.booking-header p {
    color: #aaa;
}

.status-badge {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    margin-bottom: 1rem;
    box-shadow: 0 0 15px rgba(211, 47, 47, 0.5);
}

.booking-form {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    width: 100%;
    max-width: 600px;
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
    color: #ddd;
    font-weight: 500;
    letter-spacing: 1px;
}

input, select {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: #0f0f0f; /* Darker background */
    font-family: var(--font-main);
    font-size: 1rem;
    transition: all 0.3s;
    outline: none;
    color: white;
    border-radius: 8px;
}

select {
    appearance: none; /* Remove default arrow */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 1em;
}

input:focus, select:focus {
    border-color: var(--primary-color);
    background: #1a1a1a;
    box-shadow: 0 0 0 1px var(--primary-color); /* Sharp border glow */
}

/* Custom Dropdown Styling */
select option {
    background: #1a1a1a;
    color: white;
    padding: 10px;
}

select option:checked {
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.1), transparent);
    color: var(--primary-color);
}

.submit-btn {
    width: 100%;
    text-align: center;
    margin-top: 1rem;
    border: none;
}
