/* ============================================
   DIVYA BEAUTY PARLOUR - STYLESHEET
   ============================================ */

/* ===== RESET & BASE STYLES ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette */
    --primary-pink: #F5E6E8;
    --soft-blush: #E8D5D9;
    --nude: #D4B8B8;
    --accent-gold: #D4AF37;
    --rose-gold: #E8B4B8;
    --text-dark: #2C2C2C;
    --text-medium: #555555;
    --bg-white: #FFFFFF;
    --bg-offwhite: #FAFAFA;
    
    /* Typography */
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Poppins', sans-serif;
    
    /* Spacing - Mobile First */
    --section-padding: 40px 15px;
    --container-max-width: 1200px;
    
    /* Mobile Touch Targets */
    --touch-target: 44px;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Mobile-first: Base styles are for mobile */
@media (min-width: 769px) {
    :root {
        --section-padding: 80px 20px;
    }
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 1rem;
}

h1 {
    font-size: 3rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 600;
}

h3 {
    font-size: 2rem;
    font-weight: 600;
}

h4 {
    font-size: 1.5rem;
    font-weight: 500;
}

p {
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* ===== HEADER ===== */
header {
    background-color: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0.75rem 0;
}

.header-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

nav a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 0.95rem;
    padding: 8px 12px;
    display: block;
    -webkit-tap-highlight-color: transparent;
}

nav a:hover,
nav a:active {
    color: var(--nude);
}

.header-cta {
    background: linear-gradient(135deg, var(--nude), var(--soft-blush));
    color: var(--text-dark);
    padding: 12px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 0.9rem;
    white-space: nowrap;
    min-height: var(--touch-target);
    display: inline-flex;
    align-items: center;
    -webkit-tap-highlight-color: transparent;
}

.header-cta:hover,
.header-cta:active {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 184, 184, 0.3);
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dark);
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 16px 32px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-family: var(--font-body);
    min-height: var(--touch-target);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    -webkit-tap-highlight-color: transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--nude), var(--soft-blush));
    color: var(--text-dark);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 184, 184, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--nude);
}

.btn-secondary:hover {
    background: var(--nude);
    color: var(--text-dark);
}

.btn-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.btn-whatsapp:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* ===== CONTAINER ===== */
.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: var(--section-padding);
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title h2 {
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--nude), var(--accent-gold));
    border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero {
    background: linear-gradient(135deg, var(--primary-pink), var(--bg-offwhite));
    padding: 100px 20px;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.hero-content .tagline {
    font-size: 1.3rem;
    color: var(--text-medium);
    margin-bottom: 1rem;
    font-weight: 500;
}

.hero-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-image {
    background: var(--primary-pink);
    border-radius: 20px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--nude);
    color: var(--text-medium);
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
}

/* ===== TRUST SECTION ===== */
.trust-section {
    background: var(--bg-offwhite);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    text-align: center;
}

.trust-item {
    padding: 2rem;
    background: var(--bg-white);
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.trust-item:hover {
    transform: translateY(-5px);
}

.trust-item h3 {
    color: var(--accent-gold);
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.trust-item p {
    color: var(--text-medium);
    font-weight: 500;
}

/* ===== SERVICES PREVIEW ===== */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid var(--primary-pink);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(212, 184, 184, 0.2);
}

.service-card h3 {
    color: var(--text-dark);
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.service-card p {
    color: var(--text-medium);
    font-size: 1rem;
}

/* ===== GALLERY ===== */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    aspect-ratio: 1;
    background: var(--primary-pink);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--nude);
    color: var(--text-medium);
    font-size: 1rem;
    text-align: center;
    padding: 0;
    transition: transform 0.3s ease;
    overflow: hidden;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    display: block;
}

.gallery-item small {
    display: block;
    margin-top: 0.5rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

.gallery-item:hover {
    transform: scale(1.02);
}

/* ===== REVIEWS ===== */
.reviews-section {
    background: var(--bg-offwhite);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.review-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border-left: 4px solid var(--nude);
}

.review-card p {
    font-style: italic;
    margin-bottom: 1rem;
    color: var(--text-medium);
    line-height: 1.8;
}

.review-author {
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 1rem;
}

/* ===== ABOUT PREVIEW ===== */
.about-preview {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.about-image {
    background: var(--primary-pink);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--nude);
    color: var(--text-medium);
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
    overflow: hidden;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.about-content h2 {
    margin-bottom: 1.5rem;
}

.about-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* ===== CONTACT CTA ===== */
.contact-cta {
    background: linear-gradient(135deg, var(--primary-pink), var(--soft-blush));
    text-align: center;
    padding: 60px 20px;
}

.contact-cta h2 {
    margin-bottom: 1rem;
}

.contact-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-medium);
}

.contact-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-note {
    margin-top: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-medium);
    font-style: italic;
}

/* ===== FOOTER ===== */
footer {
    background: var(--text-dark);
    color: var(--bg-white);
    padding: 40px 20px;
    text-align: center;
}

.footer-container {
    max-width: var(--container-max-width);
    margin: 0 auto;
}

.footer-content {
    margin-bottom: 2rem;
}

.footer-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--bg-white);
}

.footer-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.footer-content a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-content a:hover {
    color: var(--nude);
}

.footer-note {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* ===== PAGE SPECIFIC STYLES ===== */

/* About Page */
.about-hero {
    background: linear-gradient(135deg, var(--primary-pink), var(--bg-offwhite));
    padding: 80px 20px;
    text-align: center;
}

.about-hero h1 {
    margin-bottom: 1rem;
}

.about-content-section {
    padding: var(--section-padding);
}

/* Owner Section */
.owner-section {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--bg-offwhite);
    border-radius: 20px;
}

.owner-image-container {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.owner-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    object-fit: cover;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.owner-content h2 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.owner-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
    color: var(--text-medium);
}

.about-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 4rem;
}

.about-main-image {
    background: var(--primary-pink);
    border-radius: 20px;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--nude);
    color: var(--text-medium);
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
}

.about-main-content h2 {
    margin-bottom: 1.5rem;
}

.about-main-content p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    font-size: 1.1rem;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: var(--bg-offwhite);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
}

.value-card h3 {
    color: var(--nude);
    margin-bottom: 1rem;
}

/* Services Page */
.service-detail {
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--bg-offwhite);
    border-radius: 20px;
}

.service-detail h2 {
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--nude);
}

.service-detail p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.service-cta {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Our Work Page */
.work-categories {
    text-align: center;
    margin-bottom: 3rem;
}

.category-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.category-btn {
    padding: 10px 20px;
    background: var(--bg-white);
    border: 2px solid var(--nude);
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-medium);
}

.category-btn:hover,
.category-btn.active {
    background: var(--nude);
    color: var(--text-dark);
}

/* Contact Page */
.contact-hero {
    background: linear-gradient(135deg, var(--primary-pink), var(--bg-offwhite));
    padding: 80px 20px;
    text-align: center;
}

.contact-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--bg-offwhite);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
}

.contact-card h3 {
    margin-bottom: 1.5rem;
    color: var(--text-dark);
}

.contact-card p {
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.contact-card a {
    color: var(--nude);
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--accent-gold);
}

.map-placeholder {
    background: var(--primary-pink);
    border-radius: 20px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px dashed var(--nude);
    color: var(--text-medium);
    font-size: 1.2rem;
    text-align: center;
    padding: 2rem;
    margin-top: 3rem;
}

/* ===== RESPONSIVE DESIGN - MOBILE FIRST ===== */

/* Mobile Styles (default, up to 768px) */
h1 {
    font-size: 1.8rem;
}

h2 {
    font-size: 1.6rem;
}

h3 {
    font-size: 1.3rem;
}

.logo {
    font-size: 1.4rem;
}

.header-container {
    flex-direction: column;
    gap: 0.75rem;
}

nav ul {
    flex-direction: row;
    gap: 0.5rem;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

nav a {
    font-size: 0.85rem;
    padding: 6px 10px;
}

.header-cta {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 0.85rem;
    padding: 12px 16px;
}

.hero-container {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.hero {
    padding: 40px 15px;
    min-height: auto;
}

.hero-image {
    height: 250px;
}

.hero-content h1 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.hero-content .tagline {
    font-size: 1.1rem;
}

.hero-content p {
    font-size: 1rem;
}

.hero-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
}

.hero-buttons .btn {
    width: 100%;
}

.about-preview,
.about-main,
.owner-section {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.about-image,
.about-main-image {
    height: 280px;
}

.owner-section {
    padding: 2rem 1rem;
}

.owner-image-container {
    max-width: 100%;
}

.section {
    padding: 40px 15px;
}

.section-title {
    margin-bottom: 2rem;
}

.section-title h2 {
    font-size: 1.6rem;
}

.trust-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.trust-item {
    padding: 1.5rem 1rem;
}

.trust-item h3 {
    font-size: 2rem;
}

.services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.service-card {
    padding: 1.5rem;
}

.gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.reviews-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.review-card {
    padding: 1.5rem;
}

.values-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.value-card {
    padding: 1.5rem;
}

.contact-info {
    grid-template-columns: 1fr;
    gap: 2rem;
}

.contact-card {
    padding: 2rem 1.5rem;
}

.contact-buttons {
    flex-direction: column;
    width: 100%;
    gap: 0.75rem;
}

.contact-buttons .btn {
    width: 100%;
}

.service-cta {
    flex-direction: column;
    gap: 0.75rem;
}

.service-cta .btn {
    width: 100%;
}

.service-detail {
    padding: 2rem 1.5rem;
}

.service-detail h2 {
    font-size: 1.5rem;
}

.service-detail p,
.service-detail ul {
    font-size: 1rem;
}

.contact-cta {
    padding: 40px 15px;
}

.contact-cta h2 {
    font-size: 1.6rem;
}

.contact-cta p {
    font-size: 1rem;
}

.footer-content h3 {
    font-size: 1.5rem;
}

.footer-content p {
    font-size: 0.9rem;
}

/* Tablet Styles (769px and up) */
@media (min-width: 769px) {
    h1 {
        font-size: 2.5rem;
    }
    
    h2 {
        font-size: 2rem;
    }
    
    h3 {
        font-size: 1.5rem;
    }
    
    .logo {
        font-size: 1.8rem;
    }
    
    .header-container {
        flex-direction: row;
        padding: 0 20px;
    }
    
    nav ul {
        flex-direction: row;
        gap: 1.5rem;
        width: auto;
    }
    
    nav a {
        font-size: 1rem;
        padding: 8px 12px;
    }
    
    .header-cta {
        width: auto;
        font-size: 1rem;
        padding: 12px 24px;
    }
    
    .hero {
        padding: 80px 20px;
        min-height: 500px;
    }
    
    .hero-container {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        height: 400px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        flex-direction: row;
        width: auto;
    }
    
    .hero-buttons .btn {
        width: auto;
    }
    
    .about-preview,
    .about-main,
    .owner-section {
        grid-template-columns: 1fr 1fr;
        gap: 3rem;
    }
    
    .owner-section {
        padding: 3rem;
    }
    
    .section {
        padding: 60px 20px;
    }
    
    .trust-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .reviews-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-info {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-buttons {
        flex-direction: row;
        width: auto;
    }
    
    .contact-buttons .btn {
        width: auto;
    }
    
    .service-cta {
        flex-direction: row;
    }
    
    .service-cta .btn {
        width: auto;
    }
}

/* Desktop Styles (1024px and up) */
@media (min-width: 1024px) {
    h1 {
        font-size: 3rem;
    }
    
    .hero {
        padding: 100px 20px;
        min-height: 600px;
    }
    
    .hero-image {
        height: 500px;
    }
    
    .section {
        padding: 80px 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
    }
    
    .reviews-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

