@font-face {
    font-family: 'Glacial Indifference';
    src: url('../fonts/glacial-indifference.regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Glacial Indifference';
    src: url('../fonts/glacial-indifference.bold.otf') format('opentype');
    font-weight: bold;
    font-style: normal;
}

:root {
    --primary-color: #230f08; /* Licorice */
    --secondary-deep-green: #2a3b23; /* Deep Green */
    --secondary-antique-white: #f7ebdf; /* Antique White */
    --font-primary: 'Glacial Indifference', sans-serif;
}

body {
    font-family: var(--font-primary) !important;
    color: var(--primary-color);
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-primary) !important;
}

/* Custom UI Utility classes */
.bg-primary { background-color: var(--primary-color) !important; }
.bg-deep-green { background-color: var(--secondary-deep-green) !important; }
.bg-antique-white { background-color: var(--secondary-antique-white) !important; }

.text-primary { color: var(--primary-color) !important; }
.text-deep-green { color: var(--secondary-deep-green) !important; }
.text-antique-white { color: var(--secondary-antique-white) !important; }

/* Styling elements to look like THENBLANK / ANAABU */
.section-title {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    text-align: center;
    color: var(--primary-color);
}

/* Slider Overrides */
.aiz-carousel .slick-dots li button:before {
    color: var(--primary-color) !important;
}
.aiz-carousel .slick-dots li.slick-active button:before {
    color: var(--secondary-deep-green) !important;
}

/* Categories */
.category-item {
    text-align: center;
    display: block;
    color: var(--primary-color);
    text-decoration: none;
}
.category-item:hover {
    color: var(--secondary-deep-green);
}
.category-img-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    margin-bottom: 15px;
    background-color: var(--secondary-antique-white);
}
.category-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}
.category-item:hover img {
    transform: scale(1.05);
}
.category-item span {
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 14px;
}

/* Collection Showcase */
.collection-showcase {
    background-color: var(--secondary-antique-white);
    padding: 60px 0;
}
.collection-img-wrap {
    overflow: hidden;
    margin-bottom: 20px;
}
.collection-img-wrap img {
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.collection-img-wrap:hover img {
    transform: scale(1.02);
}

/* About Us Section */
.about-section {
    background-color: var(--primary-color);
    color: var(--secondary-antique-white);
    padding: 80px 0;
    text-align: center;
}
.about-section h2 {
    color: var(--secondary-antique-white);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 20px;
}
.about-section p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 18px;
    line-height: 1.6;
}

/* Buttons */
.btn-primary {
    background-color: var(--primary-color) !important;
    border-color: var(--primary-color) !important;
    color: var(--secondary-antique-white) !important;
    border-radius: 0 !important; /* Sharp corners for elegant look */
    text-transform: uppercase;
    letter-spacing: 1px;
}
.btn-primary:hover {
    background-color: var(--secondary-deep-green) !important;
    border-color: var(--secondary-deep-green) !important;
}
