/* Base Styles */
:root {
    --primary: #4A0000;      /* Deep Burgundy */
    --primary-light: #7a0000;
    --secondary: #d4af37;    /* Gold */
    --text-color: #333333;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --black: #000000;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-color);
    margin: 0;
    padding: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    color: var(--primary);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

/* Utilities */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

.text-center { text-align: center; }
.mt-4 { margin-top: 2rem; }
.w-100 { width: 100%; }

.highlight {
    color: var(--secondary);
}

.btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 30px;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--white);
}

.btn-primary:hover {
    background-color: var(--primary);
    color: var(--white);
}

.section {
    padding: 80px 0;
}

/* Topbar */
.topbar {
    background-color: var(--primary);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

.topbar-inner {
    display: flex;
    justify-content: center;
}

.contact-info a,
.contact-info span {
    margin-left: 20px;
    color: var(--white);
}

.contact-info a:hover {
    color: var(--secondary);
}

/* Header */
.header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h2 {
    margin: 0;
    font-size: 28px;
    color: var(--primary);
}

.nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 30px;
}

.nav-menu a {
    font-weight: 500;
    text-transform: uppercase;
    font-size: 14px;
}

.nav-menu a:hover {
    color: var(--secondary);
}

/* Dropdown Menu */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu ul.dropdown-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 250px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.1);
    padding: 10px 0;
    z-index: 1001;
    flex-direction: column;
    gap: 0;
    border-top: 3px solid var(--secondary);
}

.nav-menu .dropdown:hover ul.dropdown-menu {
    display: flex;
}

.nav-menu ul.dropdown-menu li {
    width: 100%;
}

.nav-menu ul.dropdown-menu a {
    padding: 10px 20px;
    color: var(--text-dark);
    text-transform: none;
    font-weight: 400;
    font-size: 14px;
    display: block;
}

.nav-menu ul.dropdown-menu a:hover {
    background-color: #f5f5f5;
    color: var(--primary);
}

.arrow {
    font-size: 10px;
    margin-left: 5px;
}

.btn-quote {
    padding: 10px 20px;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.mobile-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--primary);
    transition: 0.3s;
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 80vh;
    overflow: hidden;
    background-color: var(--black);
}

.slider-container {
    height: 100%;
    position: relative;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    filter: brightness(0.5); /* Dark overlay */
}

.slide-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    text-align: center;
}

.slide-content h1 {
    color: var(--white);
    font-size: 4rem;
    margin-bottom: 20px;
}

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

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    color: var(--white);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    font-size: 20px;
    transition: background 0.3s;
}

.slider-btn:hover {
    background: var(--secondary);
}

.slider-btn.prev { left: 20px; }
.slider-btn.next { right: 20px; }

/* About Section */
.about-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.about-stats {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background: var(--bg-light);
    padding: 30px;
    text-align: center;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-bottom: 4px solid var(--secondary);
}

.stat-box h3 {
    font-size: 2.5rem;
    margin: 0 0 10px 0;
    color: var(--primary);
}

.stat-box p {
    margin: 0;
    font-weight: 500;
}

/* Album Designs */
.designs-section {
    background-color: var(--bg-light);
}

.section-header {
    margin-bottom: 50px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    text-align: center;
    display: block;
}

.category-card .cat-image {
    width: 200px;
    height: 200px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    border: 5px solid var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    position: relative;
    transition: transform 0.3s ease;
}

.category-card:hover .cat-image {
    transform: scale(1.05);
    border-color: var(--secondary);
}

.category-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.category-card h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
}

/* Contact Section */
.contact-section {
    background-color: var(--black);
    color: var(--white);
}

/* -------------------------------------
   CATEGORY PAGE & ALBUMS STYLES
-------------------------------------- */
.category-page-body {
    background-color: #1a100c; /* Deep dark brown */
    color: var(--white);
}

.category-header {
    padding: 60px 0 40px;
    background-color: transparent;
}

.category-header h1 {
    font-size: 42px;
    color: #d4af37; /* Gold */
    margin-bottom: 20px;
}

.category-desc {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 18px;
    max-width: 800px;
    margin: 0 auto;
    color: #f1ebd9;
    line-height: 1.6;
}

.albums-section {
    padding: 40px 0 80px;
}

.albums-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
}

.album-card {
    background-color: #2a1e1b;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.album-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.album-img-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.album-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.album-card:hover .album-img-wrapper img {
    transform: scale(1.05);
}

.album-tag {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: rgba(212, 175, 55, 0.9); /* Gold */
    color: #1a100c;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.album-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.album-content h3 {
    color: #d4af37;
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 22px;
}

.album-content p {
    color: #cbbbae;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
}

.album-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 15px;
    margin-top: auto;
}

.album-pages {
    color: #8c7c72;
    font-size: 13px;
}

.btn-sample {
    background-color: #b58d3c;
    color: #1a100c;
    padding: 8px 16px;
    border-radius: 20px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: background-color 0.3s;
}

.btn-sample:hover {
    background-color: #d4af37;
    color: #1a100c;
}

/* Footer */
.footer {
    background-color: var(--primary);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-inner {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: var(--secondary);
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col a:hover {
    color: var(--secondary);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 20px;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 992px) {
    .about-inner {
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .topbar { display: none; }
    
    .nav-menu {
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: var(--white);
        box-shadow: 0 10px 10px rgba(0,0,0,0.1);
        display: none;
    }

    .nav-menu.active {
        display: block;
    }

    .nav-menu ul {
        flex-direction: column;
        gap: 0;
    }

    .nav-menu a {
        padding: 15px 20px;
        display: block;
        border-bottom: 1px solid #eee;
    }

    .btn-quote { display: none; }
    .mobile-toggle { display: flex; }
    
    .slide-content h1 { font-size: 2.5rem; }
    .slide-content p { font-size: 1rem; }
}
