/* Root Variables */
:root {
    --primary-color: #6366f1;
    --secondary-color: #ec4899;
    --accent-color: #f59e0b;
    --success-color: #10b981;
    --purple-accent: #8b5cf6;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --border-color: #e5e7eb;
    --shadow: 0 4px 6px -1px rgba(0,0,0,0.1), 0 2px 4px -1px rgba(0,0,0,0.06);
    --shadow-hover: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -2px rgba(0,0,0,0.05);
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    --gradient-secondary: linear-gradient(135deg, #ec4899 0%, #f59e0b 100%);
    --gradient-colorful: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #ec4899 100%);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header & Navigation */
header {
    background: var(--white);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    width: 100%;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: opacity 0.3s ease;
}

.brand:hover {
    opacity: 0.8;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo img {
    width: 60px; /* adjust as needed */
    height: auto;
    border-radius: 8px; /* optional: rounded edges */
}


.title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
}

.small {
    font-size: 12px;
    color: var(--text-light);
}

nav ul {
    display: flex;
    gap: 30px;
    list-style: none;
    align-items: center;
}

nav ul li a {
    font-weight: 500;
    color: var(--text-dark);
    position: relative;
}

nav ul li a:not(.btn):hover,
nav ul li a:not(.btn):focus {
    color: var(--secondary-color);
    outline: none;
}

nav ul li a:not(.btn)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background: var(--gradient-secondary);
    transition: width 0.3s ease;
}

nav ul li a:not(.btn):hover::after,
nav ul li a:not(.btn):focus::after {
    width: 100%;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    z-index: 1001;
    padding: 8px;
    position: relative;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    transition: all 0.3s ease;
    border-radius: 3px;
    pointer-events: none;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Mobile menu overlay */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    text-align: center;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow);
}

.btn-primary:hover,
.btn-primary:focus {
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    opacity: 0.9;
    outline: 3px solid color-mix(in srgb, var(--primary-color) 30%, transparent);
    outline-offset: 2px;
}

.btn-secondary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover,
.btn-secondary:focus {
    background: var(--gradient-primary);
    color: var(--white);
    border-color: transparent;
    outline: 3px solid color-mix(in srgb, var(--primary-color) 30%, transparent);
    outline-offset: 2px;
}

.btn-large {
    padding: 15px 35px;
    font-size: 16px;
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 600px;
    background: linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.5)), 
                url('images/hero.jpg');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-overlay {
    width: 100%;
}

.hero-content {
    text-align: center;
    color: var(--white);
}

.hero-title {
    font-size: 56px;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 30px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.4s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Page Header */
.page-header {
    background: var(--gradient-colorful);
    color: var(--white);
    padding: 50px 20px;
    text-align: center;
}

.page-title {
    font-size: 48px;
    margin-bottom: 15px;
}

.page-subtitle {
    font-size: 18px;
    opacity: 0.9;
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background: var(--white);
}

.section-title {
    text-align: center;
    font-size: 42px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: var(--shadow);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.feature-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
}

/* Services Preview */
.services-preview {
    padding: 80px 20px;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-item {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-image {
    height: 250px;
    background-size: cover;
    background-position: center;
}

.service-img-1 {
    background: url('images/customstitching.jpg');
    background-size: cover;
    background-position: center;
}

.service-img-2 {
    background: url('images/alteration.jpg');
    background-size: cover;
    background-position: center;
}

.service-img-3 {
    background: url('images/bridal&special occasions.jpg');
    background-size: cover;
    background-position: center;
}

.service-img-wedding {
    background: url('images/wedding.jpg');
    background-size: cover;
    background-position: center;
}


.service-img-lehenga {
    background: url('images/lehanka.jpg');
    background-size: cover;
    background-position: center;
}


.service-img-blouse {
    background: url('images/bridalariworki.jpg');
    background-size: cover;
    background-position: center;
}


.service-img-kids {
    background: url('images/birthdayfrock.jpg');
    background-size: cover;
    background-position: center;
}


.service-img-dhavani {
    background: url('images/dhavani.jpg');
    background-size: cover;
    background-position: center;
}

.service-item h3 {
    padding: 20px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.service-item p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

/* Gallery Section */
.gallery-section {
    padding: 60px 20px;
    background: var(--white);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 35px;
    animation: fadeIn 0.6s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.gallery-item {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--border-color);
}

.gallery-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.gallery-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: var(--bg-light);
}

.gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s ease;
}

.gallery-item:hover .gallery-image img {
    transform: scale(1.08);
}

/* Placeholder product images with different patterns */
.product-1 {
    background: linear-gradient(135deg, #e8d5b7 0%, #c9a86a 100%);
}

.product-2 {
    background: linear-gradient(135deg, #8b6f47 0%, #6b5638 100%);
}

.product-3 {
    background: linear-gradient(135deg, #d4af37 0%, #c9a86a 100%);
}

.product-4 {
    background: linear-gradient(135deg, #2c3e50 0%, #8b6f47 100%);
}

.product-5 {
    background: linear-gradient(135deg, #c9a86a 0%, #8b6f47 100%);
}

.product-6 {
    background: linear-gradient(135deg, #e8d5b7 0%, #d4af37 100%);
}

.product-7 {
    background: linear-gradient(135deg, #8b6f47 0%, #c9a86a 100%);
}

.product-8 {
    background: linear-gradient(135deg, #6b5638 0%, #2c3e50 100%);
}

.product-9 {
    background: linear-gradient(135deg, #d4af37 0%, #8b6f47 100%);
}

.availability-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    z-index: 10;
}

.available {
    background: rgba(40, 167, 69, 0.9);
    color: var(--white);
}

.sold-out {
    background: rgba(220, 53, 69, 0.9);
    color: var(--white);
}

.gallery-info {
    padding: 25px;
    background: var(--white);
}

.gallery-info h3 {
    margin-bottom: 10px;
    color: var(--primary-color);
    font-size: 18px;
}

.product-description {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* About Page Styles */
.about-story {
    padding: 80px 20px;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 38px;
    margin-bottom: 25px;
    color: var(--primary-color);
}

.about-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
}

.about-image {
    height: 400px;
    border-radius: 10px;
    background-size: cover;
    background-position: center;
}

.about-img-1 {
    background: linear-gradient(rgba(0,0,0,0.1), rgba(0,0,0,0.1)),
                url('images/about-image about-img-1.jpg');
    background-size: cover;
    background-position: center;
}

/* Founder Section */
.founder-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.founder-content {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 50px;
    align-items: start;
}

.founder-image img {
    width: 100%;
    height: auto;
    border-radius: 10px; /* optional */
  }
  

.founder-text h2 {
    font-size: 38px;
    margin-bottom: 10px;
    color: var(--primary-color);
}

.founder-subtitle {
    font-size: 18px;
    color: var(--secondary-color);
    margin-bottom: 25px;
    font-weight: 500;
}

.founder-text p {
    margin-bottom: 20px;
    color: var(--text-light);
    line-height: 1.8;
}

/* Customization Section */
.customization-section {
    padding: 80px 20px;
    background: var(--white);
}

.customization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.custom-card {
    padding: 30px;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid var(--secondary-color);
    transition: all 0.3s ease;
}

.custom-card:hover {
    transform: translateX(5px);
    box-shadow: var(--shadow);
}

.custom-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
    font-size: 20px;
}

.custom-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Values Section */
.values-section {
    padding: 80px 20px;
    background: var(--bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.value-item {
    text-align: center;
    padding: 40px 20px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.value-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.value-item h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.value-item p {
    color: var(--text-light);
}

/* Contact Page Styles */
.contact-info-section {
    padding: 60px 20px;
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.contact-card {
    text-align: center;
    padding: 40px 30px;
    background: var(--bg-light);
    border-radius: 10px;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.contact-icon {
    font-size: 50px;
    margin-bottom: 20px;
}

.contact-card h3 {
    margin-bottom: 15px;
    color: var(--primary-color);
}

.contact-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.contact-card a {
    color: var(--secondary-color);
    font-weight: 500;
}

.contact-card a:hover {
    color: var(--accent-color);
}

.contact-hours {
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-light);
}

/* Map Section */
.map-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    margin-top: 30px;
}

/* Contact Form */
.contact-form-section {
    padding: 60px 20px;
    background: var(--white);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.form-intro {
    text-align: center;
    margin-bottom: 40px;
}

.form-intro h2 {
    font-size: 36px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.form-intro p {
    color: var(--text-light);
    font-size: 16px;
}

.contact-form {
    background: var(--bg-light);
    padding: 40px;
    border-radius: 10px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--primary-color);
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
    box-shadow: 0 0 0 3px rgba(201, 168, 106, 0.1);
}

.contact-form button {
    margin-top: 20px;
    width: 100%;
}

/* Business Hours Section */
.hours-section {
    padding: 60px 20px;
    background: var(--bg-light);
}

.hours-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.hours-grid {
    margin: 30px 0;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    margin-bottom: 10px;
    background: var(--white);
    border-radius: 5px;
    box-shadow: var(--shadow);
}

.day {
    font-weight: 600;
    color: var(--primary-color);
}

.time {
    color: var(--text-light);
}

.hours-note {
    margin-top: 20px;
    color: var(--text-light);
    font-style: italic;
}

/* CTA Section */
.cta-section {
    padding: 50px 20px;
    background: var(--gradient-colorful);
    color: var(--white);
}

.cta-content {
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* Footer */
footer {
    background: linear-gradient(135deg, #1f2937 0%, #111827 100%);
    color: var(--white);
    padding: 50px 20px 25px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(99, 102, 241, 0.3);
}

.footer-brand .brand {
    gap: 15px;
}

.footer-brand .title {
    color: var(--white);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: rgba(255,255,255,0.8);
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
}

.footer-developer {
    font-size: 13px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 8px;
}

.footer-powered {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    margin-top: 8px;
}

.footer-credit {
    color: rgba(255,255,255,0.9);
    font-weight: 500;
    font-size: 13px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-credit:hover {
    color: var(--accent-color);
}

.loka-link {
    color: #0077ff;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.loka-link:hover {
    color: #66b0ff;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 968px) {
    .hero-title {
        font-size: 42px;
    }
    
    .about-content,
    .founder-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 15px;
    }

    .hamburger {
        display: flex;
    }
    
    nav {
        position: relative;
    }
    
    nav ul {
        position: fixed;
        top: 0;
        right: -100%;
        width: min(280px, calc(100vw - 60px));
        min-width: 250px;
        height: 100vh;
        background: var(--white);
        flex-direction: column;
        padding: 80px 20px 20px;
        gap: 20px;
        box-shadow: -2px 0 10px rgba(0,0,0,0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    nav ul.active {
        right: 0;
    }
    
    nav ul li {
        width: 100%;
        text-align: center;
    }
    
    nav ul li a {
        display: block;
        padding: 15px;
        font-size: 18px;
        border-bottom: 1px solid var(--border-color);
    }
    
    nav ul li a:hover,
    nav ul li a:focus {
        background-color: var(--bg-light);
        color: var(--primary-color);
        outline: none;
    }
    
    .hero-section {
        height: 450px;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-buttons .btn {
        width: 100%;
        max-width: 250px;
    }
    
    .page-header {
        padding: 40px 15px;
    }

    .page-title {
        font-size: 32px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-form {
        padding: 25px 15px;
    }

    .cta-section {
        padding: 40px 15px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-content p {
        font-size: 16px;
    }
}