/* ======== GENERAL RESET & BASE ======== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: #0d0d0d;
    color: #f0f0f0;
    line-height: 1.6;
}

/* ======== MODERN TYPOGRAPHY ======== */
h1, h2, h3 {
    text-align: center;
    font-family: 'Cinzel Decorative', serif;
    color: #c79fef;
}

p {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: #dcdcdc;
}

/* ======== NAVIGATION ======== */
.site-header {
    background: rgba(13, 13, 13, 0.9);
    padding: 15px 0;
    position: fixed;
    width: 100%;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.main-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
}

.main-nav ul {
    list-style: none;
    display: flex;
    gap: 30px;
}

.main-nav a {
    text-decoration: none;
    color: #c79fef;
    font-size: 1rem;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.main-nav a:hover {
    color: #f8d8ff;
}

/* ======== HERO SECTION ======== */
.hero-section {
    background: url('assets/images/faeblins_hero.jpg') no-repeat center center/cover;
    text-align: center;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 40px;
}

.hero-content {
    background: rgba(0, 0, 0, 0.6);
    padding: 50px;
    border-radius: 10px;
    backdrop-filter: blur(10px);
    text-align: center;
}

.hero-section h2 {
    font-size: 3.5rem;
    margin-bottom: 10px;
    color: #f8d8ff;
    letter-spacing: 1px;
}

.hero-section p {
    font-size: 1.4rem;
    opacity: 0.9;
}

/* ======== MODERN BUTTONS ======== */
.cta-button, .buy-button {
    display: inline-block;
    margin-top: 20px;
    padding: 15px 35px;
    background: linear-gradient(135deg, #c79fef, #f8d8ff);
    color: #0d0d0d;
    font-weight: bold;
    text-decoration: none;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
    font-size: 1.1rem;
}

.cta-button:hover, .buy-button:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(199, 159, 239, 0.5);
}

/* ======== SECTIONS ======== */
section {
    padding: 100px 20px;
    text-align: center;
}

/* ======== PRODUCT GRID ======== */
.product-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.product-card {
    background: rgba(34, 34, 34, 0.95);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    width: 280px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(199, 159, 239, 0.3);
}

.product-card img {
    width: 100%;
    border-radius: 12px;
}

/* ======== GALLERY ======== */
.gallery-carousel {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
}

/* ======== FOOTER ======== */
.site-footer {
    background: rgba(13, 13, 13, 0.9);
    text-align: center;
    padding: 20px 0;
    font-size: 0.9rem;
    color: #dcdcdc;
}

