
:root {
    --gold: #D4AF37;
    --dark-blue: #0A1128;
    --grey: #F0F0F0;
    --white: #FFFFFF;
    --black: #000000;
}

body {
    font-family: 'Roboto', sans-serif;
    color: var(--black);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    color: var(--gold);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--dark-blue);
}

/* Navigation */
.navbar {
    background-color: rgba(10, 17, 40, 0.95);
    padding: 15px 30px;
    transition: all 0.3s ease;
}

.navbar-brand img.logo {
    height: 40px;
}

.navbar-nav .nav-link {
    color: var(--white);
    font-weight: 500;
    padding: 0.5rem 1rem;
    position: relative;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background-color: var(--gold);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    width: 80%;
}

.navbar-toggler {
    color: var(--gold);
    border: none;
}

/* Buttons */
.btn-gold {
    background-color: var(--gold);
    border-color: var(--gold);
    color: var(--dark-blue);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: var(--dark-blue);
    border-color: var(--dark-blue);
    color: var(--gold);
}

.btn-outline-gold {
    background-color: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-weight: 600;
    padding: 10px 25px;
    border-radius: 0;
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: var(--dark-blue);
}

/* Home Page Slider */
.fullscreen-slider {
    height: 100vh;
    width: 100%;
    position: relative;
}

.slide {
    height: 100vh;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    pointer-events: none; /* Disable interactions with hidden slides */
}

.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
}

.slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
    pointer-events: auto; /* Enable interactions with active slide */
}

.slide-content {
    color: var(--white);
    max-width: 800px;
    padding: 0 20px;
    text-align: center;
    position: relative;
    z-index: 3;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.slide-content p {
    font-size: 1.25rem;
    margin-bottom: 30px;
}

.slide-buttons {
    margin-top: 30px;
}

.slider-navigation {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 5;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background-color: var(--gold);
    transform: scale(1.3);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    transform: translateY(-50%);
    pointer-events: none; /* This ensures clicks pass through the container but not the arrows */
}

.slider-arrow {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.5);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto; /* Make sure arrows are clickable */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}

.slider-arrow:hover {
    background-color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(0, 0, 0, 0.5);
}

/* Video Slide */
.video-slide video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
}

/* About Page */
.about-hero {
    height: 100vh;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 20px;
}

.about-hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
}

.about-hero-content p {
    font-size: 1.5rem;
}

.about-section {
    padding: 100px 0;
}

.about-section h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    position: relative;
    display: inline-block;
}

.about-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 80px;
    height: 3px;
    background-color: var(--gold);
}

.about-img {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.book-card {
    background-color: var(--white);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 100%;
}

.book-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.book-card img {
    height: 400px;
    object-fit: cover;
    width: 100%;
}

/* Footer */
.footer {
    background-color: var(--dark-blue);
    color: var(--white);
}

.footer-logo {
    height: 60px;
}

.footer h5 {
    color: var(--gold);
    position: relative;
    padding-bottom: 10px;
}

.footer h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--gold);
}

.footer a {
    color: var(--white);
    transition: all 0.3s ease;
}

.footer a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--gold);
    color: var(--gold);
    transition: all 0.3s ease;
    font-size: 14px;
}

.social-icons a:hover {
    background-color: var(--gold);
    color: var(--dark-blue);
}

/* Responsive */
@media (max-width: 991px) {
    .navbar {
        background-color: var(--dark-blue);
    }
    
    .slide-content h1 {
        font-size: 2.5rem;
    }
    
    .slide-content p {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .slide-content h1 {
        font-size: 2rem;
    }
    
    .about-hero-content h1 {
        font-size: 3rem;
    }
    
    .about-hero-content p {
        font-size: 1.25rem;
    }
}
.text-gold {
    color: var(--gold) !important;
}
