/* Base Styles */
:root {
    /* Rose Gold & Blush Theme */
    --primary-color: #c76d7e;
    /* Deep Rose Gold */
    --secondary-color: #fae3e8;
    /* Soft Blush */
    --text-dark: #2d1b21;
    /* Warm Brown/Black */
    --text-light: #6d545d;
    --white: #ffffff;
    --black: #000000;
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Outfit', sans-serif;
    --transition: all 0.3s ease;
    --shadow-sm: 0 4px 6px rgba(199, 109, 126, 0.1);
    --shadow-md: 0 10px 15px rgba(199, 109, 126, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    /* Stronger Rose Gold Gradient */
    background: linear-gradient(135deg, #ffd1da 0%, #f7a8b8 100%);
    background-attachment: fixed;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-center {
    text-align: center;
}

.mt-2 {
    margin-top: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 500;
    cursor: pointer;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: var(--transition);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    border: 2px solid var(--primary-color);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary-color);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--text-dark);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.9rem;
}

.btn-academy {
    background: var(--text-dark);
    color: var(--white);
    border: 2px solid var(--text-dark);
}

.btn-academy:hover {
    background: transparent;
    color: var(--text-dark);
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-sm);
    padding: 15px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 1px;
}

.logo span {
    font-weight: 400;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 500;
}

.nav-links a:hover {
    color: var(--primary-color);
}

.btn-nav {
    background: var(--text-dark);
    color: var(--white) !important;
    padding: 8px 20px;
    border-radius: 50px;
    transition: var(--transition);
}

.btn-nav:hover {
    background: var(--primary-color);
    color: var(--white) !important;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.5rem;
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 2000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
}

.mobile-menu-links a {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--text-dark);
}

.close-menu-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    background: url('images/hero.png') no-repeat center center/cover;
    color: var(--white);
    margin-top: 0;
    /* Override if needed */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    display: block;
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-title {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-text {
    font-size: 1.2rem;
    margin-bottom: 40px;
    max-width: 600px;
    color: rgba(255, 255, 255, 0.9);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Section General */
.section {
    padding: 80px 0;
}

.section-tag {
    display: block;
    font-family: var(--font-body);
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.section-title {
    font-size: 3rem;
    color: var(--text-dark);
    margin-bottom: 40px;
}

/* About Section */
.about {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
}

.about-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-image {
    position: relative;
}



.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 1.1rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--text-dark);
}

.about-features li i {
    color: var(--primary-color);
}

/* Services */
.services {
    background-color: rgba(255, 255, 255, 0.4);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.service-icon {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.service-card p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.service-list li {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 8px;
    list-style-type: disc;
    margin-left: 15px;
}

/* Portfolio */
.portfolio {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    height: 300px;
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.overlay-effect .hover-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-item:hover .hover-content {
    opacity: 1;
}

.hover-content p {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1.5rem;
}

/* Reels Section */
.reels {
    background: rgba(255, 255, 255, 0.4);
}

.reels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    justify-content: center;
}

.reel-item {
    height: 550px;
    /* Taller for vertical video */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    background: #000;
}

/* Academy */
.academy {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
    padding: 100px 0;
}

.academy-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.academy-info p {
    margin-bottom: 30px;
    color: var(--text-dark);
}

.why-us-list {
    margin-top: 30px;
}

.why-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.why-item i {
    color: var(--text-dark);
    min-width: 24px;
}

.why-item h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.why-item p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

.courses-list {
    display: grid;
    gap: 20px;
}

.course-card {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow-sm);
}

.featured-course {
    border: 2px solid var(--primary-color);
    transform: scale(1.02);
}

.course-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.course-header h3 {
    font-size: 1.3rem;
}

.duration {
    background: #f0f0f0;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 600;
}

.course-details {
    margin: 20px 0;
}

.course-details li {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.course-details li::before {
    content: "•";
    color: var(--primary-color);
}

/* Testimonials */
.testimonials {
    background: #111;
    color: var(--white);
}

.testimonials .section-title {
    color: var(--white);
    margin-bottom: 60px;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.testimonial-card {
    background: #222;
    padding: 30px;
    border-radius: 10px;
    text-align: center;
}

.stars {
    color: var(--primary-color);
    margin-bottom: 15px;
    font-size: 1.2rem;
}

.testimonial-card p {
    font-style: italic;
    margin-bottom: 20px;
    opacity: 0.9;
}

.testimonial-card .author {
    font-family: var(--font-heading);
    font-size: 1.2rem;
}

.role {
    display: block;
    font-size: 0.8rem;
    opacity: 0.6;
    font-family: var(--font-body);
    margin-top: 5px;
}

/* FAQ */
.faq {
    background: rgba(255, 255, 255, 0.4);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

.faq-item summary {
    padding: 20px 0;
    font-size: 1.2rem;
    font-family: var(--font-heading);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    font-weight: 300;
}

.faq-item[open] summary::after {
    content: '-';
}

.faq-answer {
    padding-bottom: 20px;
    color: var(--text-light);
    line-height: 1.6;
}

/* Contact */
.contact {
    background-color: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(5px);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
}

.info-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-item i {
    color: var(--primary-color);
    min-width: 24px;
    margin-top: 3px;
}

.info-item p {
    color: var(--text-dark);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    min-height: 300px;
}

/* Footer */
.footer {
    background: #000;
    color: #fff;
    padding: 30px 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* FAB */
.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    z-index: 900;
}

.fab-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
}

.fab-btn:hover {
    transform: scale(1.1);
}

.fab-call {
    background: #007bff;
}

.fab-whatsapp {
    background: #25D366;
}

.fab-btn .tooltip {
    position: absolute;
    right: 70px;
    background: #333;
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 0.8rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.fab-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 900px) {
    .academy-layout {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero-title {
        font-size: 3rem;
    }

    .about-container {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
}