/* Variables */
:root {
    --plum-dark: #4A154D;
    --plum-light: #7B2CBF;
    --plum-bg: #F3E8F9;
    --amber: #F59E0B;
    --amber-hover: #D97706;
    --white: #ffffff;
    --off-white: #FDFBF7;
    --text-dark: #1F1F1F;
    --text-gray: #555555;
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-color: 0 10px 15px -3px rgba(74, 21, 77, 0.15);
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--off-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.narrow {
    max-width: 600px;
}

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

.mb-8 {
    margin-bottom: 2rem;
}

/* Typography */
h1, h2, h3 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.2;
}

.section-title {
    font-size: 2.5rem;
    color: var(--plum-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-divider {
    width: 60px;
    height: 4px;
    background-color: var(--amber);
    border-radius: 2px;
    margin-bottom: 2rem;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    border: 2px solid transparent;
}

.btn-primary {
    background-color: var(--amber);
    color: var(--plum-dark);
}

.btn-primary:hover {
    background-color: var(--amber-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-color);
}

.btn-secondary {
    background-color: transparent;
    border-color: var(--white);
    color: var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--plum-dark);
}

.btn-outline {
    background-color: transparent;
    border-color: var(--plum-dark);
    color: var(--plum-dark);
}

.btn-outline:hover {
    background-color: var(--plum-dark);
    color: var(--white);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
    background-color: var(--plum-dark);
    color: var(--white);
    border-radius: 4px;
}

.btn-block {
    width: 100%;
}

/* Background Shapes */
.bg-shape {
    position: fixed;
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--plum-bg);
    border-radius: 50%;
    top: -100px;
    left: -100px;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: #FEF3C7; /* Light amber */
    border-radius: 50%;
    bottom: 10%;
    right: -50px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    background: #E9D5FF;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    top: 40%;
    left: 10%;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    padding: 16px 0;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--plum-dark);
}

.nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
}

.nav-links a {
    font-weight: 500;
    color: var(--text-dark);
}

.nav-links a:hover {
    color: var(--plum-light);
}

.nav-links .btn-primary {
    padding: 10px 24px;
    color: var(--plum-dark);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    display: block;
    width: 24px;
    height: 2px;
    background-color: var(--plum-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('https://images.pexels.com/photos/35285856/pexels-photo-35285856.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080');
    background-size: cover;
    background-position: center;
    margin-top: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(74, 21, 77, 0.85) 0%, rgba(74, 21, 77, 0.6) 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
    color: var(--white);
}

.tagline {
    display: inline-block;
    background-color: var(--amber);
    color: var(--plum-dark);
    padding: 6px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.headline {
    font-size: 3.5rem;
    margin-bottom: 24px;
    line-height: 1.1;
}

.subheadline {
    font-size: 1.25rem;
    margin-bottom: 40px;
    opacity: 0.9;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--white);
    font-size: 0.8rem;
    opacity: 0.7;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background-color: var(--white);
    animation: scrollLine 1.5s infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* Sections */
.section {
    padding: 100px 0;
}

/* Features */
.features {
    background-color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    background: var(--off-white);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(74, 21, 77, 0.1);
    transition: all 0.3s ease;
}

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

.feature-card.highlight {
    background: var(--plum-dark);
    color: var(--white);
}

.feature-card.highlight .feature-icon {
    color: var(--amber);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 16px;
    color: var(--plum-dark);
}

.feature-card.highlight h3 {
    color: var(--white);
}

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

.feature-card.highlight p {
    color: rgba(255, 255, 255, 0.8);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: var(--plum-bg);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--plum-dark);
}

.feature-card.highlight .feature-icon {
    background: rgba(255, 255, 255, 0.1);
}

/* Products */
.products {
    background-color: var(--plum-bg);
}

.split-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.split-image {
    position: relative;
}

.split-image img {
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.image-accent {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--amber);
    bottom: -30px;
    right: -30px;
    z-index: -1;
    border-radius: 20px;
}

.split-content h2 {
    font-size: 2.5rem;
    color: var(--plum-dark);
    margin-bottom: 1.5rem;
}

.split-content .lead {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 2rem;
}

.product-list {
    margin-bottom: 2rem;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-list li {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.product-list .bullet {
    width: 12px;
    height: 12px;
    background: var(--amber);
    border-radius: 50%;
    margin-top: 6px;
    flex-shrink: 0;
}

.product-list strong {
    display: block;
    color: var(--plum-dark);
    font-size: 1.1rem;
}

.product-list span {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Location */
.location {
    background-color: var(--white);
}

.location-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: var(--off-white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.location-info {
    padding: 60px;
}

.location-info h2 {
    font-size: 2.5rem;
    color: var(--plum-dark);
    margin-bottom: 2rem;
}

.info-block {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 2rem;
}

.info-item {
    display: flex;
    flex-direction: column;
}

.info-item .label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
    margin-bottom: 4px;
}

.info-item .value,
.info-item a.value {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--plum-dark);
}

.info-item a.value:hover {
    color: var(--amber);
}

.hours {
    background: var(--plum-dark);
    color: var(--white);
    padding: 24px;
    border-radius: 12px;
}

.hours strong {
    color: var(--amber);
    display: block;
    margin-bottom: 8px;
}

.map-container {
    background: #e5e5e5;
    min-height: 400px;
    position: relative;
}

.map-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, #f0f0f0 0%, #e0e0e0 100%);
    color: var(--plum-dark);
    text-align: center;
    padding: 24px;
}

.map-placeholder svg {
    opacity: 0.5;
}

.map-placeholder span {
    font-weight: 600;
}

/* Contact */
.contact {
    background-color: var(--plum-dark);
    color: var(--white);
}

.contact .section-title {
    color: var(--white);
}

.contact .section-title::after {
    background-color: var(--amber);
}

.contact-form {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--plum-dark);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e5e5e5;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--plum-light);
}

.success-message {
    background: #d1fae5;
    color: #065f46;
    padding: 20px;
    border-radius: 8px;
    text-align: center;
    margin-top: 20px;
}

/* Footer */
.footer {
    background-color: #2d0f30;
    color: var(--white);
    padding: 60px 0 24px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 24px;
}

.footer-brand h3 {
    font-size: 1.8rem;
    margin-bottom: 8px;
    color: var(--amber);
}

.footer-brand p {
    opacity: 0.7;
}

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

.footer-links a {
    opacity: 0.7;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--amber);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.9rem;
    opacity: 0.6;
}

/* Responsive */
@media (max-width: 968px) {
    .headline {
        font-size: 2.5rem;
    }
    
    .split-layout {
        grid-template-columns: 1fr;
    }
    
    .split-image {
        order: -1;
    }
    
    .location-wrapper {
        grid-template-columns: 1fr;
    }
    
    .map-container {
        min-height: 300px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 40px;
        gap: 24px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-150%);
        transition: transform 0.3s ease;
        z-index: 999;
    }
    
    .nav-links.active {
        transform: translateY(0);
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .location-info {
        padding: 40px 24px;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}
