:root {
    --bg-primary: #FDFCF8;
    --bg-secondary: #F3EFE7;
    --text-primary: #1A1A18;
    --text-secondary: #5C5C59;
    --color-primary: #A37C58;
    --color-primary-hover: #8C6A49;
    --color-secondary: #4A5D23;
    --border-color: #E5E0D5;
}

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

body {
    font-family: 'Manrope', sans-serif;
    background-color: var(--bg-primary);
    color: var(--text-primary);
    padding-top: 76px;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Outfit', sans-serif;
}

/* Custom Bootstrap Colors */
.btn-primary {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

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

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

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

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

/* Navbar */
.navbar {
    background-color: rgba(253, 252, 248, 0.8);
    border-bottom: 1px solid var(--border-color);
    min-height: 80px;
}

.glassmorphism {
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
}

.navbar-brand {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1.5rem;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 1rem;
    transition: color 0.3s ease;
}

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

/* Hero Section */
.hero-section {
    height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.4), rgba(0,0,0,0.2), rgba(0,0,0,0.6));
}

/* About Hero */
.about-hero {
    height: 60vh;
    position: relative;
    overflow: hidden;
}

/* Features */
.feature-icon {
    width: 64px;
    height: 64px;
    background-color: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-icon {
    width: 64px;
    height: 64px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Bag Cards */
.bag-card {
    transition: transform 0.3s ease;
    cursor: pointer;
}

.bag-card:hover {
    transform: translateY(-4px);
}

.bag-card img {
    transition: transform 0.4s ease;
    height: 320px;
    object-fit: cover;
}

.bag-card:hover img {
    transform: scale(1.05);
}

.bag-image-wrapper {
    overflow: hidden;
    border-radius: 0.5rem;
    background-color: var(--bg-secondary);
    border: 1px solid var(--border-color);
}

/* Contact Form */
.contact-form-wrapper {
    border: 1px solid var(--border-color);
}

.form-control {
    border-color: var(--border-color);
    border-radius: 2rem;
}

.form-control:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(163, 124, 88, 0.25);
}

.input-group-text {
    border-color: var(--border-color);
    border-radius: 2rem 0 0 2rem;
}

textarea.form-control {
    border-radius: 1.5rem;
}

/* Gallery Section */
.gallery-section {
    padding-top: 100px;
}

/* Bag Detail Section */
.bag-detail-section {
    padding-top: 100px;
}

/* Contact Section */
.contact-section {
    padding-top: 100px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-section {
        height: 80vh;
    }
    
    .about-hero {
        height: 50vh;
    }
    
    .display-2 {
        font-size: 2.5rem;
    }
}