/* KAMA OFFICIAL STYLESHEET 
    Theme: Minimalist Nightlife / Indian Fusion Luxury
*/

:root {
    --gold: #d4af37;
    --black: #000000;
    --dark-bg: #0a0a0a;
    --white: #ffffff;
    --transition: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* --- HERO & VIDEO --- */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    z-index: 0;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

/* --- NAVIGATION --- */
nav {
    position: absolute;
    top: 0;
    width: 100%;
    padding: 40px 60px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
}

.nav-logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
}

.nav-logo-img:hover {
    transform: scale(1.05);
}

.btn-nav {
    color: var(--white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    border: 1px solid rgba(255,255,255,0.3);
    padding: 12px 25px;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* --- HERO TEXT --- */
.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 800;
    letter-spacing: -2px;
    line-height: 1;
    margin-bottom: 20px;
}

.accent {
    color: var(--gold);
}

.hero-content p {
    font-size: clamp(0.8rem, 1.5vw, 1.1rem);
    letter-spacing: 5px;
    text-transform: uppercase;
    font-weight: 300;
    margin-bottom: 40px;
    opacity: 0.8;
}

.btn-main {
    display: inline-block;
    padding: 22px 55px;
    background: transparent;
    border: 2px solid var(--white);
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    transition: var(--transition);
}

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

/* --- RESERVATION PAGE --- */
.reserve-page {
    background-color: var(--dark-bg);
    display: flex;
    justify-content: center;
    padding: 80px 20px;
    min-height: 100vh;
}

.reserve-container {
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.reserve-logo-img {
    height: 80px;
    margin-bottom: 40px;
}

.form-wrapper {
    background: #111;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #222;
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
}

.form-wrapper iframe {
    width: 100%;
    height: 600px; /* Adjust based on Zoho form length */
    border: none;
}

.back-link {
    margin-top: 40px;
}

.back-link a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.back-link a:hover {
    color: var(--white);
}

/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
    nav { padding: 25px; }
    .nav-links { display: none; }
    
    /* Video uses data, so we use a fallback image on mobile */
    .hero-video { display: none; }
    .hero {
        background: url('hero-mobile.jpg') center/cover no-repeat;
    }

    .hero-content h1 { font-size: 3rem; }
    .btn-main { padding: 18px 40px; font-size: 0.8rem; }
}

/* High-Resolution / Retina Adjustments */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .nav-logo-img, .reserve-logo-img {
        image-rendering: -webkit-optimize-contrast;
    }
}