/* ===========================
   GLAMOUR - Fresh Build CSS
   Built from scratch by Claude
   =========================== */

:root {
    --gold-primary: #B38A3A;
    --gold-light: #D4BC7A;
    --gold-dark: #8E6F2A;
    --cream: #FAF8F3;
    --white: #FFFFFF;
    --black: #1A1A1A;
    --gray-light: #F5F5F5;
    --gray-medium: #CCCCCC;
    --gray-dark: #666666;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-hover: 0 8px 30px rgba(0, 0, 0, 0.12);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Cormorant Garamond', Georgia, serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 400;
    line-height: 1.2;
    color: var(--gold-dark);
}

h2 {
    font-size: 2.5rem;
    letter-spacing: 1.5px;
}

h3 {
    font-size: 1.8rem;
}

p {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: var(--gray-dark);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    padding: 80px 0;
}

/* ===========================
   HEADER
   =========================== */

.minimal-header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(26, 26, 26, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1000;
    transition: all 0.3s ease;
}

.minimal-header nav {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 18px 0;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-links a {
    font-family: 'Montserrat', sans-serif;
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
}

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

.menu-toggle {
    display: none;
}

/* ===========================
   HERO SECTION
   =========================== */

.hero-centered {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 120px 20px 100px;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.3), rgba(0,0,0,0.7));
}

.hero-brand {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    width: 100%;
    animation: heroFadeIn 1.2s ease-out;
}

@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* LOGO - FIXED */
.hero-logo {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 0 auto 60px;
    padding: 70px 60px 50px 60px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    border-radius: 4px;
}

/* Divider */
.hero-divider {
    margin: 40px auto;
    opacity: 1;
}

/* Tagline */
.hero-tagline {
    color: var(--gold-light);
    font-size: 1.15rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin-bottom: 30px;
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

/* Star */
.hero-star {
    margin: 30px auto;
    display: block;
}

/* Title */
.hero-title {
    color: var(--white);
    font-size: 2.5rem;
    margin-bottom: 50px;
    letter-spacing: 2px;
    font-weight: 300;
    text-shadow: 2px 2px 20px rgba(0, 0, 0, 0.5);
}

/* CTA Buttons - FIXED */
.hero-cta {
    display: flex;
    gap: 25px;
    justify-content: center;
    margin-bottom: 80px;
    flex-wrap: wrap;
}

/* Locations */
.hero-locations {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    margin-bottom: 40px;
}

.location-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.location-divider {
    color: var(--gold-light);
    font-size: 1.5rem;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% { 
        transform: translateX(-50%) translateY(0);
    }
    50% { 
        transform: translateX(-50%) translateY(-12px);
    }
}

/* ===========================
   BUTTONS
   =========================== */

.btn {
    display: inline-block;
    padding: 18px 45px;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 0;
}

.btn-primary {
    background: var(--gold-primary);
    color: var(--white);
    box-shadow: 0 6px 25px rgba(179, 138, 58, 0.4);
}

.btn-primary:hover {
    background: var(--gold-dark);
    box-shadow: 0 8px 35px rgba(179, 138, 58, 0.6);
    transform: translateY(-3px);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.9);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--white);
}

/* ===========================
   BRAND PROMISE
   =========================== */

.brand-promise {
    background: var(--cream);
    padding: 80px 0;
}

.promise-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    text-align: center;
}

.promise-item {
    padding: 30px;
}

.promise-icon {
    margin-bottom: 25px;
}

.promise-item h3 {
    margin-bottom: 15px;
    font-size: 1.5rem;
    color: var(--gold-primary);
}

.promise-item p {
    font-size: 1.05rem;
}

/* ===========================
   SECTIONS
   =========================== */

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    margin-bottom: 15px;
}

.section-header p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.star-divider {
    width: 30px;
    height: 30px;
    margin: 20px auto;
    fill: var(--gold-primary);
}

/* ===========================
   SERVICES
   =========================== */

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    overflow: hidden;
    background: var(--white);
    box-shadow: var(--shadow);
    transition: all 0.4s ease;
    cursor: pointer;
    min-height: 450px;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-5px);
}

.service-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.service-content {
    padding: 30px;
    text-align: center;
    flex-grow: 1;
}

.service-content h3 {
    margin-bottom: 15px;
}

/* Service Modal */
.service-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(26, 26, 26, 0.95);
}

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

.modal-content {
    background: var(--white);
    max-width: 800px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
}

.modal-header {
    padding: 40px;
    background: var(--cream);
    border-bottom: 2px solid var(--gold-primary);
}

.modal-header h3 {
    font-size: 2.5rem;
    color: var(--gold-dark);
}

.modal-body {
    padding: 40px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background: var(--gold-primary);
    color: var(--white);
    border: none;
    font-size: 24px;
    cursor: pointer;
}

.modal-close:hover {
    background: var(--gold-dark);
}

.service-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin: 30px 0;
    padding: 20px;
    background: var(--cream);
}

.detail-item {
    text-align: center;
}

.detail-label {
    font-weight: 600;
    color: var(--gold-dark);
    font-size: 0.9rem;
    text-transform: uppercase;
}

.detail-value {
    font-size: 1.2rem;
    color: var(--black);
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(179, 138, 58, 0.7);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
}

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

/* ===========================
   BOOKING FORM
   =========================== */

.booking-form {
    max-width: 800px;
    margin: 0 auto;
    background: var(--cream);
    padding: 50px;
    box-shadow: var(--shadow);
}

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

.form-group {
    margin-bottom: 0;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    color: var(--gold-dark);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--gray-medium);
    background: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 0.95rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-primary);
    box-shadow: 0 0 0 3px rgba(179, 138, 58, 0.1);
}

/* Contact */
.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.location-card {
    background: var(--white);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow);
}

.location-card h3 {
    margin-bottom: 20px;
}

.location-card a {
    color: var(--gold-primary);
    text-decoration: none;
    font-weight: 600;
}

/* Footer */
footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 30px;
    text-align: center;
}

.footer-logo {
    max-width: 400px;
    height: auto;
    margin: 0 auto 20px;
}

.footer-bottom {
    padding-top: 30px;
    border-top: 1px solid #333;
    color: var(--gray-medium);
}

/* Messages */
.message {
    padding: 20px;
    margin: 20px 0;
    text-align: center;
}

.message.success {
    background: #d4edda;
    color: #155724;
}

.message.error {
    background: #f8d7da;
    color: #721c24;
}

/* ===========================
   MOBILE RESPONSIVE
   =========================== */

@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
        flex-direction: column;
        gap: 5px;
        cursor: pointer;
        position: fixed;
        top: 20px;
        right: 20px;
        z-index: 1001;
    }
    
    .menu-toggle span {
        width: 25px;
        height: 2px;
        background: var(--white);
    }
    
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        justify-content: center;
        transition: right 0.4s ease;
        gap: 30px;
    }
    
    .nav-links.active {
        right: 0;
    }
    
    /* Hero adjustments */
    .hero-centered {
        min-height: 100vh;
        padding: 100px 15px 80px;
    }
    
    .hero-logo {
        max-width: 95%;
        padding: 50px 30px 40px 30px;
        margin-bottom: 50px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-tagline {
        font-size: 0.95rem;
        letter-spacing: 3px;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 15px;
        margin-bottom: 60px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
    
    .hero-locations {
        flex-direction: column;
        gap: 10px;
    }
    
    .location-divider {
        display: none;
    }
    
    .scroll-indicator {
        bottom: 30px;
        font-size: 0.8rem;
    }
    
    /* Forms */
    .booking-form {
        padding: 30px 20px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    section {
        padding: 50px 0;
    }
    
    .modal-content {
        width: 95%;
    }
    
    .modal-header,
    .modal-body {
        padding: 25px;
    }
    
    .service-details {
        grid-template-columns: 1fr;
    }
}
/* ===================================
   MOBILE MENU FIX - Add to bottom of your CSS
   Text getting cut off on left side
   =================================== */

@media (max-width: 768px) {
    /* Fix mobile menu alignment */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(26, 26, 26, 0.98);
        flex-direction: column;
        justify-content: center;
        align-items: center;  /* ← Center the links! */
        transition: right 0.4s ease;
        gap: 30px;
        padding: 0 40px;  /* ← Add padding */
    }
    
    .nav-links.active {
        right: 0;
    }
    
    /* Make sure links are centered */
    .nav-links li {
        width: 100%;
        text-align: center;
    }
    
    .nav-links a {
        display: block;
        width: 100%;
        padding: 15px 20px;
        font-size: 1.1rem;  /* ← Slightly bigger */
    }
}