/* ============================================
   CUSTOM BOOTSTRAP STYLES FOR RENISH MAKEUP
   ============================================ */

:root {
    --primary-color: #8B5A8E;
    --secondary-color: #D4A574;
    --gold-color: #C9A961;
    --light-gold: #F5E6D3;
    --light-blush: #F5E6E3;
    --dark-color: #1A1A1A;
    --light-color: #F8F8F8;
    --border-color: #E5E5E5;
    --text-muted: #6C757D;
}

/* ============================================
   GLOBAL STYLES
   ============================================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    color: var(--dark-color);
    background-color: #fff;
    line-height: 1.6;
}

/* ============================================
   COLOR UTILITIES
   ============================================ */

.text-gold {
    color: var(--gold-color) !important;
}

.text-primary {
    color: var(--primary-color) !important;
}

.bg-primary {
    background-color: var(--primary-color) !important;
}

.text-gradient-gold {
    background: linear-gradient(to right, #D4A574, #F5E6D3);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    color: var(--dark-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}

.section-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.max-width-xl {
    max-width: 35rem;
}

.max-width-5xl {
    max-width: 64rem;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    background: transparent;
    padding: 1.25rem 0;
    transition: all 0.3s ease;
    z-index: 1000;
}

.navbar-brand {
    font-size: 1.5rem !important;
    letter-spacing: 0.05em;
    color: white !important;
}

.nav-link-custom {
    color: white !important;
    font-size: 0.875rem;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link-custom:hover {
    color: var(--gold-color) !important;
}

.nav-link-custom:hover::after {
    width: 100%;
}

.navbar-transition {
    background: transparent;
}

.navbar-transition.scrolled {
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.navbar-transition.scrolled .navbar-brand {
    color: var(--dark-color) !important;
}

.navbar-transition.scrolled .nav-link-custom {
    color: var(--text-muted) !important;
}

.navbar-transition.scrolled .nav-link-custom:hover {
    color: var(--primary-color) !important;
}

.navbar-toggler {
    border: none;
    color: white;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: none;
}

.navbar-transition.scrolled .navbar-toggler {
    color: var(--dark-color);
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero-section {
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.4), transparent);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
}

.hero-subtitle {
    font-size: 0.875rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
}

.hero-description {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 28rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
    border-radius: 2rem;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: darken(#8B5A8E, 10%);
    border-color: darken(#8B5A8E, 10%);
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(139, 90, 142, 0.3);
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 2rem;
    color: white;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* ============================================
   SECTIONS STYLING
   ============================================ */

.gradient-section {
    background: linear-gradient(135deg, var(--light-blush) 0%, var(--light-gold) 100%);
}

.py-lg-6 {
    --bs-gutter-y: 4rem;
}

@media (min-width: 992px) {
    .py-lg-6 {
        padding-top: 4rem !important;
        padding-bottom: 4rem !important;
    }
}

/* ============================================
   ABOUT SECTION
   ============================================ */

.about-image-wrapper {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.years-badge {
    position: absolute;
    bottom: -1.5rem;
    right: -1.5rem;
    width: 8rem;
    height: 8rem;
    border-radius: 2rem;
    background: var(--light-blush);
    border: 3px solid white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    text-align: center;
}

.years-badge .fs-3 {
    color: var(--dark-color);
}

.stat-card {
    background: white;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.stat-card i {
    color: var(--primary-color);
}

/* ============================================
   SERVICES SECTION
   ============================================ */

.service-card {
    background: white;
    border: 1px solid var(--border-color);
    padding: 1.5rem;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.service-card img {
    border-radius: 1.5rem;
    object-fit: cover;
    height: 250px;
    width: 100%;
}

.price {
    font-size: 0.875rem;
    font-weight: 700;
}

/* ============================================
   PORTFOLIO SECTION
   ============================================ */

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    height: 300px;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.portfolio-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: rgba(139, 90, 142, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 1.5rem;
}

.portfolio-overlay h3 {
    color: white;
    font-size: 1.5rem;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.stars i {
    font-size: 1rem;
    margin-right: 0.25rem;
}

.testimonial-card h5 {
    font-weight: 700;
    color: var(--dark-color);
}

/* ============================================
   CONTACT SECTION
   ============================================ */

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 1.5rem;
    border: 1px solid var(--border-color);
}

.form-label {
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 0.5rem;
}

.form-control {
    border: 1px solid var(--border-color);
    border-radius: 0.75rem;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(139, 90, 142, 0.25);
}

.contact-info {
    padding: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
}

.contact-icon {
    width: 3rem;
    height: 3rem;
    border-radius: 1rem;
    background: var(--light-blush);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--primary-color);
    font-size: 1.25rem;
}

.contact-item h5 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}

.contact-item p,
.contact-item a {
    color: var(--text-muted);
    margin-bottom: 0;
}

.contact-item a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: var(--primary-color);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background-color: var(--dark-color);
    color: rgba(255, 255, 255, 0.8);
}

.footer h5,
.footer h6 {
    color: white;
    font-weight: 700;
}

.footer-link {
    color: rgba(255, 255, 255, 0.6) !important;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--gold-color) !important;
}

.social-links {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.25rem;
}

.social-icon:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

/* ============================================
   WHATSAPP BUTTON
   ============================================ */

.whatsapp-btn {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3.5rem;
    height: 3.5rem;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 99;
}

.whatsapp-btn:hover {
    background-color: #20BA5D;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

@media (max-width: 576px) {
    .whatsapp-btn {
        bottom: 1rem;
        right: 1rem;
        width: 3rem;
        height: 3rem;
        font-size: 1.25rem;
    }
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }

    .hero-title {
        font-size: 2rem;
    }

    .contact-info {
        padding: 0;
    }

    .years-badge {
        position: static;
        margin-top: 2rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in-up {
    animation: fadeInUp 0.8s ease-out;
}

/* ============================================
   ACCESSIBILITY
   ============================================ */

:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

/* ============================================
   UTILITIES
   ============================================ */

.min-vh-100 {
    min-height: 100vh;
}

.text-decoration-none {
    text-decoration: none;
}

.rounded-4 {
    border-radius: 1.5rem;
}

.rounded-3 {
    border-radius: 1rem;
}

/* ============================================
   DARK MODE SUPPORT (Optional)
   ============================================ */

@media (prefers-color-scheme: dark) {
    body {
        background-color: #0f0f0f;
        color: #e0e0e0;
    }

    .service-card,
    .testimonial-card,
    .contact-form,
    .stat-card {
        background: #1a1a1a;
        border-color: #333;
    }

    .section-title {
        color: #e0e0e0;
    }
}