/* Dark Luxury Theme - Beauty By Nanki */

:root {
    --color-bg: #050505;
    --color-bg-secondary: #0f0f0f;
    --color-text: #f0f0f0;
    --color-text-muted: #a0a0a0;
    --color-gold: #d4af37;
    --color-gold-light: #f3d77e;
    --color-gold-dark: #aa8c2c;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;
    --gradient-gold: linear-gradient(135deg, #bf953f, #fcf6ba, #b38728, #fbf5b7, #aa771c);
    --border-gold: 1px solid rgba(212, 175, 55, 0.3);
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background-color: var(--color-bg);
    color: var(--color-text);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 400;
    color: #fff;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s ease;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

/* Utilities */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 80px 0;
}

.text-center {
    text-align: center;
}

.gold-text {
    color: var(--color-gold);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 500;
    cursor: pointer;
    border: none;
    transition: all 0.4s ease;
}

.btn-primary {
    background: var(--gradient-gold);
    color: #000;
    position: relative;
    z-index: 1;
    background-size: 200% auto;
}

.btn-primary:hover {
    background-position: right center;
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    border: 1px solid var(--color-gold);
    color: var(--color-gold);
}

.btn-outline:hover {
    background: var(--color-gold);
    color: #000;
}

.btn-gold {
    background: var(--color-gold);
    color: #000;
    padding: 10px 24px;
    border-radius: 0;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: absolute;
    width: 100%;
    z-index: 100;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), transparent);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: block;
    width: 120px;
    /* Adjust based on preference */
}

.logo img {
    width: 100%;
    height: auto;
}

.nav-links a {
    margin-left: 30px;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #fff;
}

.nav-links a:hover {
    color: var(--color-gold);
}

/* Hero */
.hero {
    height: 100vh;
    background: url('images/hero-bg.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    background: linear-gradient(rgba(0, 0, 0, 0.3), #050505);
}

.hero-container {
    position: relative;
    z-index: 2;
}

.eyebrow {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-gold);
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.hero h1 em {
    font-style: italic;
    font-family: var(--font-heading);
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 40px;
    color: #ddd;
}

.hero-btns {
    gap: 20px;
    display: flex;
    justify-content: center;
}

/* About */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-img-wrapper {
    position: relative;
}

.about-img {
    width: 90%;
    border-radius: 4px;
    filter: grayscale(20%) contrast(110%);
}

.img-frame {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 90%;
    height: 100%;
    border: 1px solid var(--color-gold);
    z-index: -1;
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.about-content h3 {
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 1rem;
    margin-bottom: 30px;
}

.about-content p {
    margin-bottom: 20px;
    color: var(--color-text-muted);
}

/* .signature {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: var(--color-gold);
  margin-top: 30px;
} */

.signature-img {
    width: 120px;
    /* Made smaller as requested */
    margin-top: 20px;
    /* Filter to convert black to Gold (#d4af37) */
    filter: invert(69%) sepia(50%) saturate(543%) hue-rotate(3deg) brightness(93%) contrast(89%);
    opacity: 0.9;
}

/* Courses */
.section-subtitle {
    margin-top: 10px;
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.course-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.course-card {
    background: var(--color-bg-secondary);
    border: 1px solid #222;
    padding: 40px;
    transition: 0.3s;
    position: relative;
    overflow: hidden;
}

.course-card:hover {
    border-color: var(--color-gold);
    transform: translateY(-5px);
}

.card-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--color-gold);
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 5px 15px;
}

.card-content h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.location {
    color: var(--color-gold);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.card-desc {
    color: var(--color-text-muted);
    margin-bottom: 30px;
    min-height: 80px;
}

.feature-list li {
    margin-bottom: 12px;
    padding-left: 20px;
    position: relative;
    color: #ddd;
}

.feature-list li::before {
    content: "•";
    color: var(--color-gold);
    position: absolute;
    left: 0;
}

.full-width {
    width: 100%;
    text-align: center;
    margin-top: 30px;
}

/* Testimonials Carousel */
.testimonial-slider-container {
    position: relative;
    max-width: 800px;
    margin: 50px auto 30px;
    overflow: hidden;
    padding: 0 40px;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-card {
    background: var(--color-bg-secondary);
    border: 1px solid #222;
    padding: 40px;
    min-width: 100%;
    border-radius: 4px;
    opacity: 0.5;
    transform: scale(0.9);
    transition: 0.5s all;
}

.testimonial-card.active {
    opacity: 1;
    transform: scale(1);
    border-color: var(--color-gold);
    box-shadow: var(--shadow-soft);
}

.quote-icon {
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--color-gold);
    line-height: 1;
    opacity: 0.3;
    position: absolute;
    top: 20px;
    left: 20px;
}

.testimonial-card blockquote {
    font-size: 1.1rem;
    font-style: italic;
    margin: 20px 0;
    color: #e0e0e0;
    position: relative;
    z-index: 2;
}

.stars {
    color: var(--color-gold);
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.testimonial-card cite {
    font-family: var(--font-heading);
    color: var(--color-gold);
    display: block;
    margin-top: 15px;
    font-size: 1.2rem;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: transparent;
    border: 1px solid #333;
    color: var(--color-gold);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    z-index: 20;
    transition: 0.3s;
}

.slider-btn:hover {
    background: var(--color-gold);
    color: #000;
}

.prev-btn {
    left: 0;
}

.next-btn {
    right: 0;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.dot {
    width: 10px;
    height: 10px;
    background: #333;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.3s;
}

.dot.active {
    background: var(--color-gold);
}

/* Contact / Form Qualifiers */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
    background: var(--color-bg-secondary);
    padding: 60px;
    border: 1px solid #222;
}

.simple-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 30px;
}

.simple-form input,
.simple-form select {
    background: transparent;
    border: 1px solid #333;
    padding: 15px;
    color: #fff;
    font-family: var(--font-body);
}

.simple-form input:focus {
    border-color: var(--color-gold);
    outline: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.form-group {
    margin-bottom: 10px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    color: var(--color-gold);
    font-size: 0.9rem;
    font-weight: 500;
}

.radio-group {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.radio-option {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    background: #111;
    padding: 10px 15px;
    border: 1px solid #333;
    border-radius: 4px;
    transition: 0.3s;
}

.radio-option:hover {
    border-color: var(--color-gold-dark);
}

.radio-option input[type="radio"] {
    accent-color: var(--color-gold);
}

.form-select {
    width: 100%;
    background: #111;
    border: 1px solid #333;
    color: #fff;
    padding: 12px;
    font-family: var(--font-body);
}

.footer {
    border-top: 1px solid #222;
    padding: 40px 0;
    color: #666;
}

.footer-logo {
    height: 50px;
    margin: 0 auto 20px;
}

/* Responsive */
@media (max-width: 768px) {
    .navbar {
        background: #050505;
        /* Solid background on mobile for readability */
        position: relative;
        /* Not absolute on mobile to prevent overlap */
    }

    .nav-content {
        flex-direction: column;
        gap: 20px;
    }

    .nav-links {
        display: flex;
        /* Show links on mobile */
        flex-direction: column;
        align-items: center;
        gap: 15px;
        width: 100%;
        margin-top: 10px;
    }

    .nav-links a {
        margin-left: 0;
        /* Reset desktop margin */
        font-size: 1rem;
    }

    .hero {
        height: auto;
        min-height: 80vh;
        padding-top: 60px;
    }

    .hero h1 {
        font-size: 2.5rem;
    }

    .section-padding {
        padding: 50px 0;
        /* Reduce padding */
    }

    .about-grid,
    .course-cards {
        grid-template-columns: 1fr;
    }

    .about-img-wrapper {
        margin-bottom: 40px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        padding: 30px;
        /* Reduce internal padding */
    }

    .testimonial-card blockquote {
        font-size: 1rem;
    }

    .testimonial-slider-container {
        padding: 0 20px;
        /* Reduce side padding so content fits */
    }

    .slider-btn {
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}