/* =========================================
   FINAL ULTRA-LUXURY FORM CSS
   - Matches index.html luxury style
========================================= */

/* === ROOT VARIABLES === */
:root {
    --coffee: #6f4e37;
    --latte: #cfa07a;
    --cream: #fff9f5;
    --dark: #2e1a12;
    --gold: #f5c86a;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    --border-radius: 12px;
}

/* === GLOBAL STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark);
    background: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

/* === HEADER & NAV === */
.site-header {
    background: var(--coffee);
    color: var(--cream);
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.nav-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.logo img {
    width: 130px;
    transition: transform 0.3s ease;
}

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

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

.nav-links a {
    font-weight: 600;
    text-transform: uppercase;
    color: var(--cream);
    position: relative;
    padding: 0.3rem 0;
    transition: 0.3s ease;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 6px;
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--cream);
    border-radius: 3px;
    transition: all 0.4s ease;
}

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

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

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

.mobile-menu {
    display: none;
}

@media(max-width: 900px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .mobile-menu {
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 80px;
        right: -100%;
        width: 250px;
        height: calc(100vh - 80px);
        background: var(--coffee);
        padding: 2rem 1rem;
        gap: 1.5rem;
        transition: right 0.4s ease;
    }

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

    .mobile-menu a {
        color: var(--cream);
        font-weight: 600;
        text-transform: uppercase;
    }
}

/* === CINEMATIC LOGO + SLOGAN === */
#luxury-logo-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.luxury-logo-circle {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    border: 3px solid var(--latte);
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.luxury-logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.luxury-copy {
    display: flex;
    flex-direction: column;
}

.luxury-slogan {
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    color: var(--gold);
    font-weight: 600;
    animation: fadeIn 1.2s ease forwards;
}

.luxury-slogan-sub {
    font-size: 0.85rem;
    color: var(--latte);
}

/* === FORM CONTAINER === */
.container {
    max-width: 900px;
    margin: 120px auto 3rem;
    /* account for fixed header */
    padding: 0 1rem;
}

.card {
    background: var(--cream);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

h2 {
    color: var(--coffee);
    font-family: 'Playfair Display', serif;
    margin-bottom: 1rem;
}

p {
    margin-bottom: 1.5rem;
    color: var(--dark);
}

/* === FORM ELEMENTS === */
form label {
    display: block;
    margin-bottom: 0.3rem;
    font-weight: 600;
    color: var(--dark);
}

form input,
form textarea {
    width: 100%;
    padding: 0.8rem;
    margin-bottom: 1.2rem;
    border-radius: 8px;
    border: 1px solid #ccc;
    font-size: 1rem;
    transition: border 0.3s ease, box-shadow 0.3s ease;
}

form input:focus,
form textarea:focus {
    outline: none;
    border-color: var(--coffee);
    box-shadow: 0 0 8px var(--latte);
}

form button {
    padding: 0.8rem 1.5rem;
    background: var(--coffee);
    color: var(--cream);
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

form button:hover {
    background: var(--latte);
    color: var(--dark);
    transform: scale(1.03);
}

/* === NAVIGATION LINKS BELOW FORM === */
.navigation-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.navigation-links a {
    padding: 0.6rem 1.2rem;
    background: var(--coffee);
    color: var(--cream);
    font-weight: 600;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.navigation-links a:hover {
    background: var(--latte);
    color: var(--dark);
}

/* === SUCCESS MESSAGE === */
.success-message {
    margin-top: 1rem;
    font-weight: 600;
    color: var(--gold);
}

/* === ANIMATIONS === */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* === RESPONSIVE FORM === */
@media(max-width: 768px) {
    .card {
        padding: 2rem;
    }

    .luxury-logo-inner {
        flex-direction: column;
        gap: 0.5rem;
    }

    .container {
        margin-top: 100px;
    }
}