:root {
    --primary-color: #1a1a1a;
    --secondary-color: #f2f2f2;
    --accent-color: #dcae63;
    --text-color: #333333;
    --header-bg: #ffffff;
    --footer-bg: #1a1a1a;
    --footer-text: #f2f2f2;
    --border-radius: 8px;
}

/* Reset & base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--secondary-color);
    color: var(--text-color);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: var(--accent-color);
    transition: 0.3s;
}

a:hover {
    color: var(--primary-color);
}

/* Header & Navbar */
header h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo {
    height: 60px;
    width: auto;
    object-fit: contain;
}

a.d-flex.align-items-center > div {
    line-height: 1.1;
}

/* Hero Section */
.hero {
    min-height: 85vh;
    position: relative;
    overflow: hidden;
    background-color: var(--primary-color);
    color: var(--secondary-color);
}

.hero-content {
    z-index: 2;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 10px auto 20px;
}

.btn {
    border-radius: var(--border-radius);
    padding: 10px 25px;
    font-weight: 600;
}

/* Hero Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-slider .slide {
    position: absolute;
    top: 0;
    left: 100%;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: left 1s ease-in-out, opacity 1s ease-in-out;
    z-index: 0;
}

.hero-slider .slide.active {
    left: 0;
    opacity: 1;
    z-index: 1;
}

.hero-slider .slide.prev {
    left: -100%;
    opacity: 0;
}

.hero-slider img, .hero-slider video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Footer */
footer {
    background-color: var(--footer-bg);
    color: var(--footer-text);
    font-size: 0.9rem;
}

/* Dropdown hover fix */
.navbar .dropdown-menu {
    border-radius: var(--border-radius);
}

/* Features Section (if used later) */
.features {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
}

.feature {
    background-color: var(--secondary-color);
    padding: 40px;
    flex: 1;
    min-width: 250px;
    text-align: center;
    border-radius: var(--border-radius);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}
