/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700;800&family=Poppins:wght@300;400;500;600;700&display=swap');

:root {
    --golden-primary: #c9a03d;
    --golden-dark: #a67c00;
    --golden-light: #f5e6b8;
    --dark-bg: #1a1a2e;
    --light-bg: #fef9e6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: #333;
    background: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

.golden-text {
    color: var(--golden-primary);
}

.btn-golden {
    background: var(--golden-primary);
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-golden:hover {
    background: var(--golden-dark);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(201, 160, 61, 0.3);
}

.btn-outline-golden {
    border: 2px solid var(--golden-primary);
    background: transparent;
    color: var(--golden-primary);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-outline-golden:hover {
    background: var(--golden-primary);
    color: #fff;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.5)), url('https://placehold.co/1920x800?text=Books+and+Quill');
    background-size: cover;
    background-position: center;
    height: 90vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: white;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    letter-spacing: 2px;
}

.hero-tagline {
    font-size: 1.8rem;
    font-family: 'Playfair Display', serif;
    font-style: italic;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--golden-primary);
    display: inline-block;
    padding-bottom: 15px;
}

.section-title h2:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--golden-primary);
}

/* Service Cards */
.service-card,
.anthology-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    margin-bottom: 30px;
}

.service-card:hover,
.anthology-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.service-icon {
    font-size: 3rem;
    color: var(--golden-primary);
    padding: 30px 0 0;
}

/* Stats Section */
.stats-section {
    background: linear-gradient(135deg, var(--golden-primary), var(--golden-dark));
    color: white;
    padding: 60px 0;
}

.stat-box {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
}

/* Floating Buttons - FIXED POSITION BOTTOM RIGHT */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    font-size: 24px;
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.whatsapp-btn {
    background: #25d366;
}

.call-btn {
    background: #007bff;
}

.floating-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* Footer */
.footer {
    background: #1a1a1a;
    margin-top: 60px;
}

.footer-logo {
    max-height: 60px;
}

.footer a:hover {
    color: var(--golden-primary) !important;
}

/* Navigation */
.navbar {
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
}

.navbar-brand .logo-img {
    max-height: 50px;
}

.navbar-nav .nav-link {
    font-weight: 500;
    color: #333;
    transition: 0.3s;
    margin: 0 5px;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
    color: var(--golden-primary);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

.dropdown-item:hover {
    background-color: var(--golden-light);
    color: var(--golden-dark);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, #f8f9fa, #e9ecef);
    padding: 60px 0 30px;
    margin-top: -20px;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-tagline {
        font-size: 1.2rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .floating-buttons {
        bottom: 20px;
        right: 15px;
    }

    .floating-btn {
        width: 45px;
        height: 45px;
        font-size: 20px;
    }
}

/* Modal Popup */
.modal-content {
    border-radius: 20px;
    border: none;
}

.popup-image img {
    width: 100%;
    border-radius: 15px;
}

/* Forms */
.form-control,
.form-select {
    border-radius: 10px;
    border: 1px solid #ddd;
    padding: 12px 15px;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--golden-primary);
    box-shadow: 0 0 0 0.2rem rgba(201, 160, 61, 0.25);
}

/* Cards */
.card {
    border-radius: 15px;
    overflow: hidden;
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

/* Badges */
.badge-golden {
    background-color: var(--golden-primary);
    color: #fff;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 500;
}

.text-golden {
    color: #c9a03d;
}
.text-golden:hover {
    color: #a67c00;
}