/* style_main.css - Classic, Professional & Minimalist Design for Mahtab Nail */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@100;300;400;500;700;900&display=swap');

:root {
    --primary-color: #D82C6C;
    /* Elegant Pink */
    --primary-dark: #A31E4F;
    --primary-light: #FDF4F7;
    /* Very light pink surface tint */
    --secondary-color: #C5A059;
    /* Classic Gold */
    --text-dark: #1F1F1F;
    --text-muted: #666666;
    --bg-white: #ffffff;
    --bg-light: #FAFAFA;
    --border-radius-lg: 4px;
    /* Classic sharp/slightly rounded edges */
    --border-radius-md: 2px;
    --transition: all 0.25s ease-in-out;
    --shadow-soft: 0 2px 10px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 8px 25px rgba(0, 0, 0, 0.08);
}

body {
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* Fix Typography - no global override that breaks icons */
h1,
h2,
h3,
h4,
h5,
h6,
.nav-link,
.btn,
p,
span,
div,
a {
    font-family: 'Vazirmatn', Tahoma, Arial, sans-serif;
}

/* Exclude FontAwesome from font-family override */
.fa,
.fas,
.far,
.fal,
.fab,
.fa-solid,
.fa-brands {
    font-family: "Font Awesome 6 Free", "Font Awesome 6 Brands" !important;
}

/* Elegant font sizing */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.4;
}

h1 {
    font-size: calc(1.5rem + 1vw);
    letter-spacing: -0.5px;
}

h2 {
    font-size: calc(1.3rem + 0.5vw);
}

h3 {
    font-size: calc(1.1rem + 0.3vw);
}

h4 {
    font-size: calc(1rem + 0.2vw);
}

h5 {
    font-size: 1.1rem;
}

p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* Custom Colors */
.text-primary-theme {
    color: var(--primary-color) !important;
}

.bg-primary-theme {
    background-color: var(--primary-color) !important;
}

.text-gold {
    color: var(--secondary-color) !important;
}

.bg-light-pink {
    background-color: var(--primary-light) !important;
}

/* Buttons - Classic & Minimalist */
.btn-custom {
    padding: 10px 24px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid transparent;
    text-decoration: none;
    cursor: pointer;
}

.btn-primary-custom {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.btn-primary-custom:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    color: white;
}

.btn-outline-custom {
    background-color: transparent;
    color: var(--text-dark);
    border: 1px solid #D0D0D0;
}

.btn-outline-custom:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* Badge */
.badge-experience {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-white);
    color: var(--text-dark);
    padding: 6px 16px;
    border-radius: 4px;
    font-weight: 500;
    margin-bottom: 24px;
    border: 1px solid #EAEAEA;
    font-size: 0.85rem;
    box-shadow: var(--shadow-soft);
}

.badge-experience i {
    color: var(--primary-color);
}

/* Classic Card Component */
.classic-card {
    background: #ffffff;
    border-radius: var(--border-radius-md);
    border: 1px solid #F0F0F0;
    padding: 30px;
    transition: var(--transition);
    height: 100%;
}

.classic-card:hover {
    box-shadow: var(--shadow-soft);
    border-color: #E8E8E8;
}

.classic-card img.workshop-img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    margin-bottom: 20px;
}

/* Image wrappers */
.img-wrapper-classic {
    border-radius: var(--border-radius-md);
    overflow: hidden;
    position: relative;
    border: 1px solid #F0F0F0;
}

.img-wrapper-classic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Section Spacing */
.section-padding {
    padding: 90px 0;
}

/* Testimonial Card */
.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--border-radius-md);
    padding: 30px;
    position: relative;
    border: 1px solid #F0F0F0;
    text-align: center;
}

.testimonial-card i.quote-icon {
    font-size: 1.5rem;
    color: var(--primary-color);
    opacity: 0.3;
    margin-bottom: 15px;
}

.testimonial-author {
    font-weight: 700;
    margin-top: 15px;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Fix navbar layout */
.navbar-custom {
    background-color: #ffffff;
    border-bottom: 1px solid #F5F5F5;
}

.navbar-nav .nav-link {
    color: var(--text-muted);
    font-weight: 500;
    transition: var(--transition);
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
}

@media (max-width: 991px) {
    .section-padding {
        padding: 50px 0;
    }

    .classic-card {
        padding: 20px;
    }
}