/* Import custom fonts */
@import url('fonts.css');

/* ===========================
   Global Styles
   =========================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    /* font-family: 'Arial', sans-serif; */
}

/* ===========================
   Header Styles
   =========================== */
header {
    background: #f8f9fa; /* light gray background */
    width: 100%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* ===========================
   Navigation Bar Styles
   =========================== */
nav {
    width: 100%;
    display: flex;
    justify-content: space-around;
    background: #ffffff;
    align-items: center;
    padding: 1rem 2rem;
    position: fixed;
    z-index: 10;
    /* Bebas Neue font for nav */
    font-family: 'Bebas Neue', Arial, sans-serif;
    letter-spacing: 1px;
}

/* ===========================
   Navigation Content Layout
   =========================== */
.nav-content {
    width: 70%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* ===========================
   Logo Styles
   =========================== */
.logo img {
    height: 68px;
    width: auto;
    margin-right: 2rem;
}

/* ===========================
   Menu Section Styles
   =========================== */
.menu-section {
    display: flex;
    align-items: center;
    /* Bebas Neue font for menu links */
    font-family: 'Bebas Neue', Arial, sans-serif;
    letter-spacing: 1px;
}

.menu-section ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
}

.menu-section ul li a {
    text-decoration: none;
    color: #222;
    font-weight: 500;
    font-size: 1.3rem;
    transition: color 0.2s;
}

.menu-section ul li a:hover {
    color: #b8860b; /* gold/brown accent */
}

/* ===========================
   Buttons Section Styles
   =========================== */
.buttons-section {
    display: flex;
    align-items: center;
    gap: 1rem;
    /* Abril Fatface font for buttons */
    font-family: 'Abril Fatface', Arial, sans-serif;
    letter-spacing: 0.5px;
}

.btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 50%;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn:hover {
    background: #f5f5f5;
}

.btn img {
    width: 24px;
    height: 24px;
    display: block;
}

/* ===========================
   Slider Styles
   =========================== */
.slider {
    width: 100%;
    position: relative;
    margin: 0 auto;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
}

.slider-container {
    display: flex;
    transition: transform 0.5s ease;
    width: 100%;
    position: relative;
}

.slider-item {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-item.active {
    opacity: 1;
    position: relative;
    z-index: 1;
}

.slider-item img {
    width: 100%;
    height: 80vh;
    object-fit: cover;
    display: block;
}

.slider-caption {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(34, 34, 34, 0.7);
    color: #fff;
    padding: 1.5rem 2.5rem;
    border-radius: 8px;
    text-align: center;
    max-width: 80%;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
}

.slider-caption h2 {
    font-family: 'Bebas Neue', Arial, sans-serif;
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
    letter-spacing: 1px;
}

.slider-sub-caption p {
    font-family: 'Abril Fatface', Arial, sans-serif;
    font-size: 1.2rem;
    margin: 0;
    color: #ffd700;
    letter-spacing: 0.5px;
}

.slider-controls {
    position: absolute;
    width: 100%;
    top: 50%;
    left: 0;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
}

.slider-controls button {
    background: rgba(34,34,34,0.7);
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
    cursor: pointer;
    pointer-events: all;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-controls button:hover {
    background: #b8860b;
    color: #fff;
}

/* Responsive slider styles */
@media (max-width: 900px) {
    .slider-item img {
        height: 260px;
    }
    .slider-caption {
        padding: 1rem 1.2rem;
        font-size: 1rem;
    }
    .slider-caption h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 600px) {
    .slider-caption {
        bottom: 16px;
        padding: 0.7rem 0.8rem;
        max-width: 95%;
    }
    .slider-caption h2 {
        font-size: 1.1rem;
    }
    .slider-sub-caption p {
        font-size: 0.9rem;
    }
    .slider-controls button {
        width: 34px;
        height: 34px;
        font-size: 1.2rem;
    }
}

/* ===========================
   Responsive Styles
   =========================== */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
    }
    .menu-section {
        flex-direction: column;
        align-items: flex-start;
    }
    .menu-section ul {
        flex-direction: column;
        gap: 1rem;
    }
    .logo img {
        margin-bottom: 1rem;
        margin-right: 0;
    }
    .buttons-section {
        margin-top: 1rem;
        justify-content: flex-end;
    }
}
