/* =========================
   Google Fonts
   ========================= */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@500&family=Manrope&family=Montserrat:wght@400;600&family=Poppins:wght@500&family=Roboto:wght@500&family=Source+Sans+Pro:ital,wght@0,600;1,200&display=swap');

/* =========================
   Global Resets
   ========================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
}

a {
    text-decoration: none;
}

p {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
}

/* =========================
   Navbar Styles
   ========================= */
.nav-item {
    font-size: 16px;
    font-weight: 500;
}

.navbar a.nav-link {
    color: #000 !important;
    position: relative;
    font-weight: 500;
    transition: color 0.3s ease;
}

.navbar a.nav-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 0%;
    height: 2px;
    background: #f8c146;
    transition: width 0.3s ease;
}

.navbar a.nav-link:hover {
    color: #f8c146 !important;
}

.navbar a.nav-link:hover::after {
    width: 100%;
}

/* =========================
   Search Box
   ========================= */
.search-box input {
    border: none;
    background: #f2f2f2;
    padding: 7px 20px;
    border-radius: 66px;
    font-size: 16px;
    font-style: italic;
}

.search img {
    position: absolute;
    top: 24px;
    margin-left: -40px;
}

/* =========================
   Section Titles
   ========================= */
.section-title h1 {
    font-size: 2rem;
    color: #222;
}

/* =========================
   Text & Image Parts
   ========================= */
.text-part {
    padding: 40px 60px;
}

.text-part h2 {
    font-weight: bold;
    font-size: 46px;
}

.text-part p {
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    line-height: 29px;
}

.img-part {
    padding: 0 30px;
}

/* =========================
   Buttons
   ========================= */
.btn {
    background: #1F1F1F;
    color: #f2f2f2;
    transition: all 0.3s ease;
}

.btn:hover {
    color: #8f8c8c;
}

.btn-dark {
    background: #000;
    border: none;
}

.btn-dark:hover {
    background: #f8c146;
    color: #000;
    transform: scale(1.05);
}

form .btn:hover {
    background-color: #FF9C35;
    border-color: #FF9C35;
}

/* =========================
   Card Styles
   ========================= */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: none;
    border-radius: 10px;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card-title {
    color: #1F1F1F;
    font-weight: 600;
    font-size: 20px;
}

/* =========================
   Product Item
   ========================= */
.product-item {
    transition: all 0.3s ease;
}

.product-item:hover {
    transform: scale(1.03);
}

/* =========================
   Animations
   ========================= */
.carousel-item img {
    animation: fadeInScale 1.5s ease;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(1.05);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

.fade-in {
    animation: fadeIn 1.2s ease forwards;
    opacity: 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* =========================
   Form Styles
   ========================= */
form .form-control {
    border-radius: 0.5rem;
    border: 1px solid #ccc;
}

input:focus, textarea:focus {
    box-shadow: 0 0 8px #f8c146;
    border-color: #f8c146;
    outline: none;
    transition: all 0.3s ease;
}

/* =========================
   Footer Styles
   ========================= */
footer {
    font-size: 0.9rem;
}

footer a {
    text-decoration: none !important;
    color: inherit;
    transition: color 0.3s ease;
    font-weight: 500;
    font-size: 16px;
    font-family: 'Inter', sans-serif;
    margin-top: 2rem;
}

footer a:hover {
    color: #FF9C35;
    text-decoration: underline;
    cursor: pointer;
}

/* =========================
   Cookie Alert
   ========================= */
#cookieAlert {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    display: none;
}
#cookieAlert .alert {
    background-color: #f8c146;
    color: #000;
    padding: 15px 30px;
    border-radius: 5px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}