:root {
    --gold: #c5a059;
    --dark: #1a1a1a;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--dark);
    line-height: 1.8;
}

h1, h2, h3, .navbar-brand {
    font-family: 'Playfair Display', serif;
    letter-spacing: -0.02em;
}

.text-gold { color: var(--gold); }

.hero-section {
    min-height: 100vh;
    padding-top: 100px;
}

.author-img {
    max-height: 700px;
    filter: grayscale(20%);
    border-radius: 2px;
}

.book-img {
    max-height: 550px;
    transition: transform 0.3s ease;
}

.book-img:hover {
    transform: translateY(-10px);
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.tracking-widest { letter-spacing: 0.2em; }

/* Gallery Styling */
.gallery-img {
    width: 100%;
    height: 300px;
    object-fit: cover; /* Keeps images uniform in size */
    filter: grayscale(100%);
    transition: filter 0.5s ease, transform 0.5s ease;
    cursor: pointer;
}

.gallery-img:hover {
    filter: grayscale(0%);
    transform: scale(1.02);
}

.header-line {
    width: 60px;
    height: 2px;
    background-color: var(--gold);
    margin-top: 15px;
}

/* Testimonial Styling */
#testimonials {
    background-color: #121212 !important; /* Deeper dark for elegance */
}

.blockquote p {
    font-size: 1.5rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

.blockquote-footer {
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Ensure Carousel icons are gold */
.carousel-control-prev-icon, .carousel-control-next-icon {
    filter: invert(72%) sepia(21%) saturate(738%) hue-rotate(357deg) brightness(91%) contrast(88%);
}

/* Social Icons Styling */
.social-links a {
    font-size: 1.2rem;
    color: var(--dark);
    text-decoration: none;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
}

.social-links a:hover {
    color: var(--gold);
    transform: translateY(-3px);
}

/* Video Section Styling */
#trailer {
    background: linear-gradient(rgba(0,0,0,0.9), rgba(0,0,0,0.9)), url('video-bg-texture.jpg');
    background-size: cover;
}

.video-container {
    border: 1px solid rgba(197, 160, 89, 0.3); /* Subtle gold border */
    border-radius: 4px;
    overflow: hidden;
}

.ratio-16x9 {
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
}