/*
 * Cinelux Cinema - Premium Stylesheet
 * Strict Luxury Dark & Gold Cinematic Theme
 */

@import url('https://fonts.googleapis.com/css2?family=Crimson+Text:ital,wght@0,400;0,600;0,700;1,400&family=IBM+Plex+Mono:wght@400;500;600;700&family=Source+Sans+Pro:wght@300;400;600;700&display=swap');

/* Color Palette and Typography Variables */
:root {
    --color-black: #000000;
    --color-white: #FFFFFF;
    --color-gold: #68542F;
    --color-grey-light: #D9D9D9;
    --color-grey-dark: #333333;
    
    --font-serif: "Crimson Text", serif;
    --font-mono: "IBM Plex Mono", monospace;
    --font-sans: "Source Sans Pro", sans-serif;
    
    --transition-smooth: all 0.3s ease;
}

/* Reset and Global Styles */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border-radius: 0 !important; /* STRICT REQUIREMENT: No modern rounded SaaS style */
}

body {
    background-color: var(--color-black);
    color: var(--color-white);
    font-family: var(--font-sans);
    line-height: 1.5;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button, input, textarea, select {
    font-family: inherit;
    background: none;
    border: none;
    color: inherit;
}


/* Layout Utilities */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.section-padding {
    padding: 90px 0;
}

.text-center {
    text-align: center;
}

/* Section Headings */
.section-title {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 500;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-bottom: 50px;
    color: var(--color-white);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 24px;
    background-color: var(--color-gold);
    color: var(--color-white) !important;
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    border: none;
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-align: center;
}

.btn:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: none !important;
    text-shadow: none !important;
}

/* Header & Navigation */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: transparent;
    transition: background-color 0.3s ease;
}

.site-header.scrolled {
    position: fixed;
    background-color: rgba(0, 0, 0, 0.95);
    border-bottom: 1px solid #111;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 75px;
}

/* Logo Section */
.logo-placeholder {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-text-wrapper {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-text-top {
    font-family: var(--font-serif);
    font-size: 24px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-white);
    text-transform: uppercase;
}

.logo-text-bottom {
    font-family: var(--font-serif);
    font-size: 10px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--color-gold);
    text-transform: uppercase;
    text-align: right;
    margin-top: -2px;
}

/* Navigation Menu */
.nav-menu {
    display: flex;
    gap: 30px;
}

.nav-link {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 400;
    color: var(--color-white);
    transition: var(--transition-smooth);
}

.nav-link:hover, .nav-link.active {
    color: var(--color-gold);
}

/* Mobile Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: var(--color-white);
    transition: var(--transition-smooth);
}

/* Hero Section */
.hero-section {
    position: relative;
    height: 90vh;
    min-height: 550px;
    display: flex;
    align-items: flex-end;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-bottom: 80px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, 
        rgba(0, 0, 0, 0.95) 0%, 
        rgba(0, 0, 0, 0.8) 30%, 
        rgba(0, 0, 0, 0.4) 60%, 
        rgba(0, 0, 0, 0.1) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 550px;
    text-align: left; /* STRICT RULE: Must not be centered */
}

.hero-title {
    font-family: var(--font-sans);
    font-size: 72px;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.5px;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.hero-subtitle {
    font-family: var(--font-sans);
    font-size: 22px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 24px;
    letter-spacing: 0.5px;
}

/* Subpage Hero Section */
.subpage-hero {
    position: relative;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    text-align: center;
}

.subpage-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0);
    z-index: 1;
}

.subpage-hero-content {
    position: relative;
    z-index: 2;
}

.subpage-title {
    font-family: var(--font-serif);
    font-size: 58px;
    font-weight: 400;
    letter-spacing: 2px;
    color: var(--color-white);
}

/* What We Offer Section */
.offerings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 40px;
}

.offering-card {
    background: var(--color-black);
    display: flex;
    flex-direction: column;
    text-align: center;
}

.offering-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    margin-bottom: 20px;
}

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

.offering-title {
    font-family: var(--font-mono);
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 12px;
    line-height: 1.4;
    text-transform: uppercase;
    color: var(--color-white);
}

.offering-desc {
    font-family: var(--font-sans);
    color: #CCCCCC;
    font-size: 14px;
    line-height: 1.6;
    padding: 0 10px;
}

/* Experience Section (Promo Block) */
.promo-section {
    background: var(--color-black);
}

.promo-container {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.promo-text-side {
    text-align: left;
}

.promo-title {
    font-family: var(--font-mono);
    font-size: 28px;
    font-weight: 500;
    line-height: 1.4;
    margin-bottom: 24px;
}

.promo-desc {
    font-family: var(--font-sans);
    font-size: 16px;
    color: #CCCCCC;
    line-height: 1.8;
    margin-bottom: 30px;
}

.promo-img-side {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.promo-img-side img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Latest Trending Section (Movie Strip Style) */
.carousel-section {
    background: var(--color-black);
    overflow: hidden;
}

.carousel-container-outer {
    position: relative;
    width: 100%;
    margin: 40px 0;
}

.carousel-viewport {
    position: relative;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.carousel-strip {
    display: flex;
    gap: 40px;
    width: max-content;
    will-change: transform;
}

.carousel-poster {
    width: 180px;
    height: 270px;
    flex-shrink: 0;
    border: 1px solid #333;
    overflow: hidden;
    cursor: pointer;
    background-color: var(--color-black);
    transition: border-color 0.3s ease;
    transform-origin: center center;
}

.carousel-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* About Page - Who We Are & Founders */
.founder-card {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 50px;
    align-items: center;
    margin-bottom: 60px;
    background: transparent;
}

.founder-card.reverse {
    grid-template-columns: 1fr 320px;
}

.founder-img-wrapper {
    width: 100%;
    height: 400px;
    overflow: hidden;
}

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

.founder-info {
    text-align: left;
}

.founder-name {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--color-white);
}

.founder-bio {
    font-family: var(--font-sans);
    font-size: 16px;
    color: #CCCCCC;
    line-height: 1.8;
}

/* Blogs Page Card Grid */
.blogs-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 50px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.blog-card-img {
    width: 100%;
    aspect-ratio: 2 / 3;
    overflow: hidden;
    border: 1px solid #111;
    margin-bottom: 20px;
}

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

.blog-card .btn {
    align-self: stretch;
    font-size: 16px;
    padding: 8px 16px;
}

/* Pagination Style */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-bottom: 80px;
    font-family: var(--font-mono);
    font-size: 16px;
    color: var(--color-white);
}

.pagination-item {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    min-width: 32px;
    height: 32px;
    border: 1px solid var(--color-white);
    color: var(--color-white);
    text-align: center;
    padding: 0 8px;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.pagination-item:hover, .pagination-item.active {
    border-color: var(--color-white);
    color: var(--color-white);
}

.pagination-dots {
    color: var(--color-white);
}

/* FAQ Accordion Section */
.faq-section {
    background-color: var(--color-black);
    border-top: 1px solid #222;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-card {
    border: 1px solid var(--color-white);
    background-color: var(--color-black);
    transition: border-color 0.2s ease;
}

/* No gold border hover */

.faq-header {
    padding: 20px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 400;
}

.faq-toggle-icon {
    font-size: 20px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.faq-card.open .faq-toggle-icon {
    transform: rotate(45deg);
}

.faq-answer-wrapper {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
}

.faq-answer {
    padding: 0 24px 20px 24px;
    color: #CCCCCC;
    font-size: 14px;
    line-height: 1.6;
}

/* Contact Page Grid & Form */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 40px;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 100%;
}

.contact-info-card {
    background-color: transparent;
    border: 1px solid var(--color-white);
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.contact-info-icon {
    font-size: 24px;
    color: var(--color-white);
    margin-bottom: 12px;
}

.contact-info-title {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.contact-info-value {
    font-family: var(--font-sans);
    font-size: 14px;
    color: #CCCCCC;
    word-break: break-all;
}

/* Form Styles */
.form-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100%;
}

.form-control {
    width: 100%;
    background-color: var(--color-grey-light);
    border: none;
    padding: 16px;
    color: #111;
    font-family: var(--font-serif);
    font-size: 18px;
    transition: opacity 0.2s ease;
}

.form-control::placeholder {
    color: #555555;
    opacity: 1;
}

.form-control:focus {
    outline: none;
    opacity: 0.95;
}

textarea.form-control {
    height: 160px;
    resize: none;
}

.contact-form .btn {
    padding: 14px;
    width: 100%;
    font-weight: bold;
    text-transform: capitalize;
}

/* Footer Styles */
.site-footer {
    background-color: var(--color-black);
    border-top: 1px solid #111;
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    margin-bottom: 50px;
}

.footer-about .logo-placeholder {
    margin-bottom: 20px;
}

.footer-about-text {
    font-family: var(--font-serif);
    color: var(--color-white);
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 32px;
    height: 32px;
    background-color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    font-size: 14px;
    transition: var(--transition-smooth);
}

.social-icon:hover {
    background-color: var(--color-gold);
}

.footer-column-title {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--color-white);
    margin-bottom: 24px;
}

.footer-links-list li {
    margin-bottom: 12px;
}

.footer-links-list a {
    font-family: var(--font-serif);
    color: var(--color-white);
    font-size: 16px;
    transition: var(--transition-smooth);
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.footer-links-list a:hover {
    color: var(--color-gold);
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.newsletter-input {
    width: 100%;
    background-color: var(--color-grey-light);
    border: none;
    padding: 12px 16px;
    color: #111;
    font-family: var(--font-serif);
    font-size: 16px;
}

.newsletter-input::placeholder {
    color: #555555;
}

.newsletter-input:focus {
    outline: none;
}

.newsletter-form .btn {
    padding: 10px;
    width: 100%;
    font-size: 16px;
}

.footer-privacy-link {
    display: inline-block;
    margin-top: 12px;
    font-family: var(--font-serif);
    font-size: 14px;
    color: var(--color-white);
    text-decoration: underline;
}

.footer-privacy-link:hover {
    color: var(--color-gold);
}

.footer-bottom {
    border-top: 1px solid #111;
    padding-top: 30px;
    text-align: center;
    font-family: var(--font-serif);
    font-size: 16px;
    color: var(--color-white);
}

/* Notification alerts */
.alert-box {
    padding: 12px;
    margin-bottom: 20px;
    font-family: var(--font-sans);
    font-size: 14px;
    border: 1px solid transparent;
}
.alert-success {
    background-color: rgba(104, 84, 47, 0.15);
    border-color: var(--color-gold);
    color: var(--color-white);
}
.alert-error {
    background-color: rgba(255, 0, 0, 0.1);
    border-color: #ff3333;
    color: #ff3333;
}

/* Fullscreen Mobile Overlay */
body.no-scroll {
    overflow: hidden;
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .offerings-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    .blogs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 24px;
        margin-bottom: 30px;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .nav-menu {
        display: none;
    }
    
    .nav-menu.active {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        position: fixed;
        inset: 0;
        background-color: rgba(0, 0, 0, 0.98);
        z-index: 999;
        gap: 40px;
    }
    
    .mobile-menu-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .mobile-menu-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .mobile-menu-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(6px, -7px);
    }
    
    .hero-title {
        font-size: 48px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .offerings-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .promo-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .founder-card, .founder-card.reverse {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .founder-img-wrapper {
        height: 320px;
    }
    
    .blogs-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-info-grid {
        aspect-ratio: auto;
        height: auto;
    }
    
    .subpage-title {
        font-size: 40px;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .contact-info-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info-card {
        aspect-ratio: 16 / 9;
    }
}
