/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #B8860B;
    --secondary-color: #6c757d;
    --text-dark: #fff;
    --text-light: #ccc;
    --bg-light: #1a1a1a;
    --bg-dark: #000;
    --border-light: #333;
    --border-dark: #666;
}


body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-light);
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Navigation */
.navbar {
    position: sticky;
    top: 0;
    z-index: 50;
    width: 100%;
    background-color: rgba(26, 26, 26, 0.95);
    border-bottom-color: var(--border-dark);
    transition: all 0.3s ease;
}



.navbar .container {
    display: flex;
    height: 4rem;
    align-items: center;
    justify-content: space-between;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.nav-logo {
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
}

.nav-title {
    font-size: 1.25rem;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-menu {
    display: none;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .nav-menu {
        display: flex;
    }
}

.nav-link {
    position: relative;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link.active {
    color: var(--primary-color);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -0.25rem;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
}

.theme-toggle {
    padding: 0.5rem;
    border: none;
    background: none;
    color: var(--secondary-color);
    cursor: pointer;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.theme-toggle:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--primary-color);
}


/* Main Content */
#main-content {
    min-height: calc(100vh - 4rem - 6rem);
}

.page {
    display: none;
}

.page.active {
    display: block;
}

/* Hero Section */
.hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    max-width: 48rem;
    margin: 0 auto;
}

.hero-title {
    font-size: 56px;
    font-weight: bold;
    letter-spacing: -0.025em;
    color: white;
    line-height: 1.1;
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 60px;
    }
}

.hero-subtitle {
    font-size: 1.125rem;
    color: #e5e5e5;
    max-width: 42rem;
    line-height: 1.6;
}

@media (min-width: 768px) {
    .hero-subtitle {
        font-size: 1.25rem;
    }
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-fade {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 6rem;
    background: linear-gradient(to top, var(--bg-dark), transparent);
    z-index: 10;
}


/* Buttons */
.btn {
    display: inline-flex;
    height: 3rem;
    align-items: center;
    justify-content: center;
    padding: 0 2rem;
    font-size: 0.875rem;
    font-weight: 500;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background-color: transparent;
    border: 2px solid white;
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: rgba(255, 255, 255, 0.1);

}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Sections */
.section-title {
    font-size: 1.875rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
}

.section-subtitle {
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

/* Featured Collections */
.featured-collections {
    padding: 3rem 0;
}

.collections-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .collections-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.collection-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    background-color: var(--bg-light);
    transition: transform 0.3s ease;
}

.collection-card:hover {
    transform: translateY(-4px);
}

.collection-image {
    height: 400px;
    overflow: hidden;
}

.collection-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.collection-card:hover .collection-img {
    transform: scale(1.1);
}

.collection-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.collection-card:hover .collection-overlay {
    transform: translateY(0);
}

.collection-title {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.collection-description {
    font-size: 0.875rem;
    color: #e5e5e5;
    margin-bottom: 1rem;
    opacity: 0;
    transform: translateY(1rem);
    transition: all 0.3s ease;
}

.collection-card:hover .collection-description {
    opacity: 1;
    transform: translateY(0);
}

.collection-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: transparent;
    color: var(--text-dark);
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-decoration: none;
    transform: translateY(1rem);
    opacity: 0;
    transition: all 0.3s ease;
    border: 2px solid white;
}

.collection-card:hover .collection-btn {
    opacity: 1;
    transform: translateY(0);
}

.collection-btn:hover {
    background-color: transparent;
}

/* Our Story Section */
.our-story {
    padding: 4rem 0;
    background-color: rgba(51, 51, 51, 0.3);
    border-radius: 0.75rem;
    margin: 3rem 0;
}


.story-content {
    max-width: 72rem;
    margin: 0 auto;
}

.story-content {
    display: grid;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .story-content {
        grid-template-columns: 1fr 1fr;
    }
}

.story-paragraph {
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.story-link {
    display: inline-flex;
    align-items: center;
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
    transition: color 0.3s ease;
}

.story-link:hover {
    text-decoration: underline;
}

.story-link i {
    margin-left: 0.5rem;
    width: 1.25rem;
    height: 1.25rem;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.stat-card {
    background-color: var(--bg-light);
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: var(--shadow);
    text-align: center;
}

.stat-number {
    font-size: 1.875rem;
    font-weight: bold;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Why Choose Us */
.why-choose-us {
    padding: 4rem 0;
}

.text-center {
    text-align: center;
}

.features-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background-color: var(--bg-light);
    padding: 2rem;
    border-radius: 0.75rem;
    box-shadow: var(--shadow-lg);
    text-align: center;
}

.feature-icon {
    width: 4rem;
    height: 4rem;
     background-color: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}


.feature-icon i {
    width: 2rem;
    height: 2rem;
    color: var(--text-dark);
    content: "\f559";
    display: flex;
    justify-content: center;
    align-items: center;
    height: 35px;
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--text-light);
}

/* CTA Section */
.cta-section {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    margin: 3rem 0;
}

.cta-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.cta-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.6), rgba(9, 10, 11, 0.6));
}

.cta-content {
    position: relative;
    z-index: 10;
    padding: 3rem;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 1.5rem;
    color: white;
}

@media (min-width: 768px) {
    .cta-title {
        font-size: 3rem;
    }
}

.cta-subtitle {
    color: #f3f4f6;
    margin-bottom: 2rem;
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.125rem;
}

/* Page Titles */
.page-title {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 2rem;
    text-align: center;
}

/* About Page */
.about-content {
    max-width: 48rem;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 3rem;
}

.about-description {
    font-size: 1.125rem;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.mission-vision-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .mission-vision-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.mission-card,
.vision-card {
    padding: 1.5rem;
    background-color: #374151;
    border-radius: 0.5rem;
}



.card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.card-description {
    color: var(--text-light);
}

.team-section {
    margin-top: 3rem;
}

.team-grid {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 768px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.team-member {
    text-align: center;
}

.member-image {
    margin-bottom: 1rem;
    overflow: hidden;
    border-radius: 50%;
}

.member-img {
    width: 12rem;
    height: 12rem;
    object-fit: cover;
    margin: 0 auto;
}

.member-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-role {
    color: var(--text-light);
}

/* Collection Page */
.category-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.category-btn {
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    border: none;
    background-color: #374151;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: capitalize;
}

.category-btn:hover {
    background-color: #4b5563;
}

.category-btn.active {
    background-color: var(--bg-light);
    color: var(--text-dark);
}


.products-grid {
    display: grid;
    gap: 1.5rem;
    grid-template-columns: 1fr;
}

@media (min-width: 640px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.product-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    background-color: var(--bg-light);
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.product-card:hover {
    transform: translateY(-4px);
}

.product-image {
    aspect-ratio: 3/4;
    overflow: hidden;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.product-card:hover .product-img {
    transform: scale(1.05);
}

.product-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .product-overlay {
    opacity: 1;
}

.product-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.product-price {
    font-size: 1.125rem;
    margin-bottom: 1rem;
}

.add-to-cart {
    background-color: white;
    color: var(--text-dark);
    padding: 0.5rem 1.5rem;
    border-radius: 0.375rem;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: background-color 0.3s ease;
}

.add-to-cart:hover {
    background-color: #f3f4f6;
}

/* Contact Page */
.contact-info-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
    grid-template-columns: 1fr;
}

.map-container {
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}


@media (min-width: 768px) {
    .contact-info-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-card {
    background-color: #374151;
    padding: 1.5rem;
    border-radius: 0.5rem;
}

.contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.contact-address {
    font-style: normal;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contact-details p {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.hours-list {
    list-style: none;
    color: var(--text-light);
}

.hours-list li {
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-form {
    max-width: 42rem;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea {
    width: 100%;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    border: 1px solid var(--border-light);
    background-color: var(--bg-light);
    color: var(--text-dark);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 2px rgba(184, 134, 11, 0.2);
}

[data-theme="dark"] .form-input,
[data-theme="dark"] .form-textarea {
    background-color: #374151;
    border-color: var(--border-dark);
    color: var(--text-light);
}

.form-textarea {
    resize: vertical;
    min-height: 6rem;
}

/* Footer */
/* General Body Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    /* Ensure footer stays at the bottom */
}

/* Main Content Styles (to push footer down) */
main {
    flex: 1;
    padding-bottom: 80px;
    /* Allows main content to take up available space */
}

/* Footer Styles */
.footer {
    background-color: #2c2c2c;
    color: #f4f4f4;
    padding: 40px 20px;
    font-size: 0.9em;
    border-top: 5px solid #D4AF37;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-section {
    flex: 0 0 auto;
    width: 23%;
    margin-bottom: 30px;
}

.footer-section.about-us {
    width: 30%;
    min-width: 250px;
}

.footer-section.quick-links,
.footer-section.contact-info,
.footer-section.social-media {
    width: 20%;
    min-width: 150px;
}

.footer-section h3 {
    color: #D4AF37;
    margin-bottom: 20px;
    font-size: 1.2em;
}

.footer-section p,
.footer-section ul {
    line-height: 1.8;
    color: #ccc;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

.contact-info p i {
    margin-right: 10px;
    color: #D4AF37;
}

.social-icons a {
    color: #fff;
    font-size: 1.5em;
    margin-right: 15px;
}

.social-icons a:last-child {
    margin-right: 0;
}

.social-icons a:hover {
    color: #D4AF37;
}

.footer-bottom {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #444;
    color: #aaa;
    font-size: 0.8em;
}

@media (max-width: 992px) {

    .footer-section.about-us,
    .footer-section.quick-links,
    .footer-section.contact-info,
    .footer-section.social-media {
        width: 45%;
        min-width: unset;
    }
}

@media (max-width: 768px) {
    .footer-container {
        flex-direction: column;
        align-items: center;
        padding: 0 15px;
    }

    .footer-section {
        margin-bottom: 30px;
        text-align: center;
        width: 90%;
    }

    .social-icons {
        justify-content: center;
        display: flex;
    }
}


/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.5rem;
    }

    .page-title {
        font-size: 2rem;
    }

    .cta-title {
        font-size: 2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 200px;
    }
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

/* Utility Classes */
.text-center {
    text-align: center;
}

.hidden {
    display: none;
}

.visible {
    display: block;
}