/* General Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f4f4f4;
    display: flex;
    flex-direction: column;
}

/* Header Section */
header {
    background: linear-gradient(90deg, #cfad8a, #e67e22);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    position: relative;
    border-bottom: 3px solid #e67e22;
}

.logo img {
    max-height: 30px;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle img {
    width: 20px;
    height: 20px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li {
    display: inline;
}

nav ul li a {
    text-decoration: none;
    font-weight: bold;
    color: #fff;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #fff;
}

.nav-links {
    display: flex;
}

.nav-links.show {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    right: 0;
    background: rgba(221, 178, 128, 0.9);
    border-radius: 6px;
    width: auto;
    padding: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
    z-index: 10;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.nav-links li {
    margin: 1px;
}

.nav-links a {
    padding: 0px 10px;
    text-align: left;
    display: block;
}

.nav-links a:hover {
    color: brown;
}

/* Hero Section */
.hero {
    position: relative;
    background: url('./images/banner1.png') center/cover no-repeat;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    transition: 1s ease-in-out;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: #fff;
}

.btn {
    display: inline-block;
    background: #fff;
    color: #e67e22;
    padding: 10px 20px;
    font-size: 1rem;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: 0.3s, color 0.3s, border 0.3s;
    border: 2px solid #e67e22;
}

.btn:hover {
    background: #e67e22;
    color: #fff;
    border: 2px solid #e67e22;
}

/* Dots for Carousel */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.dot {
    height: 10px;
    width: 10px;
    margin: 0 5px;
    background-color: #fff;
    border-radius: 50%;
    transition: background-color 0.3s, border 0.3s;
    cursor: pointer;
    border: 2px solid transparent; /* Default border */
}

.dot.active {
    background-color: #e67e22;
    border: 2px solid #d9534f; /* Darker border for active dot */
}

/* Footer Section */
footer {
    background: #343a40;
    color: #fff;
    text-align: center;
    padding: 28px;
    font-size: 0.9rem;
    border-top: 3px solid #e67e22;
    margin-top: auto;
}

/* Orangish Accents */
h2, h3, h4 {
    color: #e67e22;
}

/* Responsive Design */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 1rem;
    }

    .btn {
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 1.8rem;
    }

    .hero-content p {
        font-size: 0.9rem;
    }

    .btn {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}
