.footer-link {
    color: #fff;
    margin-right: 1.5rem;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-link:last-child {
    margin-right: 0;
}
.footer-link:hover {
    color: #b89c4c;
    text-decoration: underline;
}
@media (max-width: 768px) {
    .footer-links {
        flex-direction: column !important;
        align-items: center !important;
    }
    .footer-link {
        margin-right: 0 !important;
        margin-bottom: 0.7rem;
    }
}
/* Animation classes */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.fade-in.visible {
    opacity: 1;
    transform: none;
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.slide-in-left.visible {
    opacity: 1;
    transform: none;
}

.slide-in-right {
    opacity: 0;
    transform: translateX(60px);
    transition: opacity 0.8s cubic-bezier(.4,0,.2,1), transform 0.8s cubic-bezier(.4,0,.2,1);
}
.slide-in-right.visible {
    opacity: 1;
    transform: none;
}
body {
    font-family: 'Inter', 'Arial', sans-serif;
    background: #f6f2eb;
    color: #181818;
    margin: 0;
    padding: 0;
}

header {
    background-color: #343a40;
    color: white;
    padding: 20px 0;
    text-align: center;
}

h1 {
    font-size: 2.5rem;
    margin: 0;
}

nav {
    margin: 20px 0;
}

nav a {
    color: white;
    margin: 0 15px;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

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

.section {
    margin: 40px 0;
}

.footer {
    background-color: #343a40;
    color: white;
    text-align: center;
    padding: 10px 0;
    position: relative;
    bottom: 0;
    width: 100%;
}

.footer p {
    margin: 0;
}

.logo {
    max-width: 180px;
    max-height: 180px;
    width: auto;
    height: auto;
    margin-bottom: 1rem;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.main-navbar {
    background: #fff;
    border-bottom: 1.5px solid #e5e0d8;
    padding: 0.5rem 0;
}
.main-navbar .logo {
    max-width: 120px;
    max-height: 60px;
    margin: 0 1rem 0 0;
    display: inline-block;
    vertical-align: middle;
}
.main-navbar .brand-title {
    font-size: 2rem;
    font-weight: 700;
    color: #b89c4c;
    letter-spacing: 1px;
    display: inline-block;
    vertical-align: middle;
    margin: 0;
}
.main-navbar .nav-link {
    color: #181818;
    font-weight: 500;
    margin-left: 2rem;
    font-size: 1.1rem;
}
.main-navbar .nav-link:hover {
    color: #b89c4c;
}

.hero-section {
    background: #ede7dd;
    border-radius: 24px;
    margin: 2rem 0;
    padding: 2.5rem 2rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}
.hero-section .hero-title {
    font-size: 3.2rem;
    font-weight: 800;
    color: #181818;
    margin-bottom: 1.2rem;
    letter-spacing: -2px;
}
.hero-section .hero-desc {
    font-size: 1.2rem;
    color: #3a3a3a;
    margin-bottom: 2rem;
    max-width: 500px;
}
.hero-section .hero-btn {
    background: #181818;
    color: #fff;
    border-radius: 24px;
    padding: 0.7rem 2.2rem;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    transition: background 0.2s;
}
.hero-section .hero-btn:hover {
    background: #b89c4c;
    color: #181818;
}

.stats-section {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 2px 16px rgba(26,34,51,0.06);
    padding: 2rem 1rem;
    margin: 2rem 0;
}
.stats-section .stat {
    font-size: 2.2rem;
    font-weight: 700;
    color: #b89c4c;
}
.stats-section .stat-label {
    font-size: 1rem;
    color: #181818;
    font-weight: 500;
}

.collection-section {
    margin: 2.5rem 0;
}
.collection-section .collection-title {
    font-size: 2.1rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}
.collection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
}
.collection-card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(26,34,51,0.06);
    overflow: hidden;
    transition: box-shadow 0.2s;
    cursor: pointer;
}
.collection-card:hover {
    box-shadow: 0 6px 32px rgba(186,156,76,0.12);
}
.collection-card img {
    width: 100%;
    height: 160px;
    object-fit: cover;
}
.collection-card .card-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin: 0.7rem 0 0.3rem 0;
    color: #181818;
    padding: 0 1rem;
}

.testimonial {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(26,34,51,0.06);
    padding: 2rem 1rem;
    margin-bottom: 1.5rem;
    min-height: 220px;
}
.testimonial img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #b89c4c;
    margin-bottom: 1rem;
}
.testimonial-message {
    font-size: 1.1rem;
    color: #1a2233;
    font-style: italic;
}
.testimonial-author {
    color: #b89c4c;
    font-weight: bold;
    margin-top: 1rem;
}

.site-footer {
    background: #181818;
    color: #fff;
    font-size: 1rem;
    letter-spacing: 1px;
    padding: 2.5rem 0 1rem 0;
    margin-top: 3rem;
}
.site-footer .footer-logo {
    max-width: 120px;
    margin-bottom: 1rem;
}
.site-footer .footer-links {
    color: #fff;
    margin-bottom: 0.5rem;
}
.site-footer .footer-links a {
    color: #fff;
    margin-right: 1.5rem;
    text-decoration: none;
    font-weight: 500;
}
.site-footer .footer-links a:hover {
    color: #b89c4c;
}

.social-icon {
    transition: transform 0.2s, color 0.2s;
    margin: 0 0.5rem;
}
.social-icon:hover {
    transform: scale(1.15);
    color: #b89c4c !important;
}

@media (max-width: 768px) {
    h1 {
        font-size: 2rem;
    }

    nav a {
        margin: 0 10px;
    }
    .hero-section .hero-title {
        font-size: 2rem;
    }
    .collection-grid {
        grid-template-columns: 1fr;
    }
}