/* Typography */
:root {
    --primary-font: 'Scheherazade New', serif;
    --secondary-font: 'Montserrat Alternates', sans-serif;
    --dark-color: #f5f5f5;
    --light-color: #0a0a0a;
    --accent-color: #d4af37;
    --card-bg: #141414;
    --border-color: #2a2a2a;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--secondary-font);
    color: var(--dark-color);
    line-height: 1.8;
    background: var(--light-color);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Navigation */
.navbar {
    background: #0a0a0a;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #2a2a2a;
}

.navbar-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--primary-font);
    font-size: 2rem;
    font-weight: 600;
    color: var(--dark-color);
    letter-spacing: 2px;
}

.logo-text {
    font-family: var(--primary-font);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--dark-color);
    letter-spacing: 2px;
    text-decoration: none;
}

.nav-menu-wrapper {
    display: flex;
    gap: 3rem;
}

.nav-menu {
    display: flex;
    gap: 3rem;
    list-style: none;
}

.nav-link {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-decoration: none;
    color: var(--dark-color);
    transition: color 0.3s;
    text-transform: uppercase;
}

.nav-link:hover {
    color: var(--accent-color);
}

/* Hero Section - Full Bleed */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-content-area {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 2rem;
}

.hero-title-image {
    max-width: 80%;
    height: auto;
    margin-bottom: 2rem;
}

.hero-object {
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.6;
    right: 10%;
    top: 20%;
}

.hero-title {
    font-family: var(--primary-font);
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: 2px;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Ticker Section */
.ticker-section {
    background: #0f0f0f;
    padding: 2rem 0;
    overflow: hidden;
    border-top: 1px solid #2a2a2a;
    border-bottom: 1px solid #2a2a2a;
}

.ticker-content-block {
    font-size: 1.5rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--dark-color);
    animation: scroll 20s linear infinite;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.ticker-icon {
    width: 30px;
    height: 30px;
}

@keyframes scroll {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* About Section */
.about-section {
    padding: 5rem 0;
    background: #0a0a0a;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-bottom {
    padding: 2rem 0;
}

.title {
    font-family: var(--primary-font);
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
}

.about-date {
    font-family: var(--primary-font);
    font-size: 4rem;
    font-weight: 700;
    color: var(--accent-color);
    margin: 1rem 0;
}

.color-title {
    color: var(--accent-color);
}

.about-paragraph {
    margin: 2rem 0;
}

.body-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 1.5rem 0;
    color: #aaa;
}

.about-border {
    height: 1px;
    background: linear-gradient(90deg, transparent, #2a2a2a, transparent);
    margin-top: 2rem;
}

.about-horizontal-border {
    height: 1px;
    background: #ddd;
}

/* Royalty Section */
.royalty-section {
    padding: 5rem 0;
    background: #0f0f0f;
}

.royalty-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.royalty-image-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    background: linear-gradient(135deg, #1a1a1a 0%, #0f0f0f 100%);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.royalty-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.hand-fan {
    position: absolute;
    width: 150px;
    height: 150px;
    opacity: 0.4;
    right: 20px;
    top: 20px;
}

.royalty-placeholder {
    font-size: 2rem;
    color: #999;
    text-align: center;
}

.royalty-paragraph p {
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Full Bleed Sections */
.full-bleed {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.model-background,
.cta-background,
.contact-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.model-bg-image,
.cta-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.model-overlay,
.cta-overlay,
.contact-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.model-content,
.cta-content-wrapper,
.contact-content-wrapper {
    position: relative;
    z-index: 2;
    width: 100%;
}

/* Model 01 Content Overlay */
.model-01-content-overlay {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
}

.model-01-text-block {
    max-width: 600px;
    margin-top: 2rem;
}

.model-01-text-block .button {
    margin-top: 2rem;
}

/* Model 02 Content Overlay */
.model-02-content-overlay {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 2rem;
}

.model-02-text-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Model 03 Content Overlay */
.model-03-content-overlay {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 2rem;
}

.model-03-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
}

.model-03-text-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.model-03-text-block .button {
    align-self: flex-start;
}

.model-01-title-block {
    text-align: center;
    margin-bottom: 3rem;
}

.model-01-title-image {
    max-width: 100%;
    height: auto;
    margin-bottom: 2rem;
}

.model-image-block {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.model-01-back-image,
.model-01-font-image {
    max-width: 300px;
    height: auto;
    border-radius: 8px;
}

.model-01-content {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.model-01-inner-content {
    margin-bottom: 3rem;
}

.model-border {
    margin: 2rem 0;
}

.model-horizontal-border {
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
    max-width: 100px;
    margin: 0 auto;
}

.model-01-button {
    text-align: center;
    margin-top: 2rem;
}

/* Button */
.button {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: var(--accent-color);
    color: #0a0a0a;
    text-decoration: none;
    border: 2px solid var(--accent-color);
    cursor: pointer;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s;
    font-weight: 600;
}

.button:hover {
    background: transparent;
    border-color: var(--accent-color);
    color: var(--accent-color);
}

/* Collection Section */
.collection-section {
    padding: 5rem 0;
    background: #0f0f0f;
}

.collection-block {
    text-align: center;
}

.collection-block .title {
    margin-bottom: 2rem;
}

.collection-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.collection-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    transition: transform 0.3s;
}

.collection-image:hover {
    transform: scale(1.05);
}

.collection-block .body-paragraph {
    max-width: 600px;
    margin: 0 auto;
}

/* Tailored Section */
.tailored-section {
    padding: 5rem 0;
    background: #0a0a0a;
}

.tailored-content-block {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.tailored-content-block .title {
    margin-bottom: 2rem;
}

.tailored-gallery {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.tailored-image {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    max-width: 500px;
}

/* FAQ Section */
.faq-section {
    padding: 5rem 0;
    background: #0f0f0f;
    position: relative;
}

.faq-section .title {
    text-align: center;
    margin-bottom: 3rem;
}

.faq-ornament {
    max-width: 200px;
    height: auto;
    opacity: 0.2;
    position: absolute;
    top: 20px;
    right: 20px;
}

.faq-content {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.faq-item:hover {
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--dark-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-answer {
    padding: 0 1.5rem 1.5rem;
    color: #666;
    line-height: 1.8;
    max-height: 200px;
    overflow: hidden;
    transition: all 0.3s;
}

/* Contact Section */
.contact-section {
    padding: 5rem 0;
    background: #0a0a0a;
    position: relative;
}

.contact-content {
    text-align: center;
    position: relative;
}

.contact-content .title {
    margin-bottom: 3rem;
}

.mirror-image {
    max-width: 150px;
    height: auto;
    opacity: 0.3;
    position: absolute;
    top: 20px;
}

.mirror-image:first-of-type {
    left: 0;
}

.mirror-image:last-of-type {
    right: 0;
}

.contact-bottom {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.contact-block {
    text-align: center;
}

.contact-link {
    display: inline-block;
    font-size: 1.2rem;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 0.5rem;
    transition: color 0.3s;
}

.contact-link:hover {
    color: var(--dark-color);
}

.contact-block p {
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #999;
}

/* CTA Section - Full Bleed */
.cta-section.full-bleed {
    min-height: 80vh;
    padding: 0;
}

.cta-section .title {
    color: white;
    margin-bottom: 2rem;
}

.cta-section .body-paragraph {
    color: #ccc;
    max-width: 600px;
    margin: 2rem auto;
}

.cta-content {
    text-align: center;
    padding: 4rem 2rem;
}

.cta-section .button {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: var(--dark-color);
    margin: 1rem 0;
}

.cta-section .button:hover {
    background: white;
    border-color: white;
}

/* Footer */
.footer-section {
    background: #050505;
    color: white;
    padding: 5rem 0 2rem;
    border-top: 1px solid #1a1a1a;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-content .title {
    color: white;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: flex-end;
}

.footer-link {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

.footer-link:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid #1a1a1a;
    padding-top: 2rem;
    text-align: center;
    position: relative;
}

.footer-pillars {
    max-width: 200px;
    height: auto;
    margin-bottom: 1rem;
}

.copyright-text {
    color: #999;
    font-size: 0.85rem;
    margin: 0.5rem 0;
}

/* Model 02 Section */
.model-02-section {
    position: relative;
}

.model-02-content-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.model-02-top-right {
    display: flex;
    gap: 2rem;
}

.model-02-vertical-line {
    width: 2px;
    height: 100%;
    min-height: 200px;
    background: linear-gradient(to bottom, var(--accent-color), transparent);
}

.model-02-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.model-02-title-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.timeless, .elegance {
    max-width: 300px;
    height: auto;
}

/* Model 03 Section */
.model-03-section {
    position: relative;
}

.model-03-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.model-03-title-wrap {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.model-03-title-block {
    text-align: center;
}

.model-03-title-block.bottom {
    margin-top: 1rem;
}

.model-03-top-title, .model-03-bottom-title {
    max-width: 250px;
    height: auto;
}

.model-03-right-block {
    display: flex;
    gap: 2rem;
}

.model-03-border-line {
    display: flex;
    justify-content: center;
}

.model-03-inner-line {
    width: 2px;
    height: 100%;
    min-height: 150px;
    background: linear-gradient(to bottom, transparent, var(--accent-color), transparent);
}

.title-block {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

/* Vision Section */
.vission-section {
    padding: 5rem 0;
    background: #0f0f0f;
}

.vission-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    align-items: center;
}

.vission-left, .vission-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.vission-middle {
    text-align: center;
}

.vission-middle .title {
    font-size: 2rem;
}

.vission-horizontal-border {
    height: 2px;
    background: linear-gradient(90deg, var(--accent-color), transparent);
    width: 100px;
}

.vission-horizontal-border.right {
    background: linear-gradient(90deg, transparent, var(--accent-color));
    align-self: flex-end;
}

/* Collection Gallery */
.collection-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.collection-paragraph {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

/* Mirror Image */
.mirror-image {
    max-width: 150px;
    height: auto;
    opacity: 0.3;
    position: absolute;
    top: 20px;
}

.contact-top {
    position: relative;
    padding: 0 180px;
}

/* FAQ Accordion */
.faq-content-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    background: #141414;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
    border: 1px solid #2a2a2a;
}

.faq-question {
    padding: 1.5rem;
    font-weight: 600;
    cursor: pointer;
    color: var(--dark-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s;
}

.faq-question:hover {
    background: #1a1a1a;
}

.faq-icon {
    width: 20px;
    height: 20px;
    transition: transform 0.3s;
}

.faq-item.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer-content {
    color: #666;
    line-height: 1.8;
}

/* Footer Right */
.footer-right {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: flex-end;
}

.copyright-content {
    margin-top: 1rem;
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

.animate-fade {
    opacity: 0;
    animation: fadeIn 1s ease forwards;
}

.animate-fade:nth-child(1) {
    animation-delay: 0.2s;
}

.animate-fade:nth-child(2) {
    animation-delay: 0.4s;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive for Full Bleed */
@media (max-width: 992px) {
    .model-02-content-overlay,
    .model-03-content-overlay {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .model-03-text-block .button {
        align-self: center;
    }
    
    .contact-bg-image {
        width: 200px;
        opacity: 0.2;
    }
    
    .contact-bg-image.left {
        left: -50px;
    }
    
    .contact-bg-image.right {
        right: -50px;
    }
    
    .vission-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .vission-horizontal-border {
        margin: 0 auto;
    }
    
    .vission-horizontal-border.right {
        align-self: center;
    }
    
    .model-02-content-block,
    .model-03-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .model-02-top-right,
    .model-03-right-block {
        justify-content: center;
    }
    
    .contact-top {
        padding: 0;
    }
    
    .mirror-image {
        display: none;
    }
    
    .footer-right {
        align-items: flex-start;
    }
}
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .title {
        font-size: 2rem;
    }

    .about-content,
    .royalty-content,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .nav-menu {
        gap: 1rem;
    }

    .ticker-content-block {
        font-size: 1rem;
    }

    .contact-bottom {
        grid-template-columns: 1fr;
    }

    .footer-links {
        align-items: flex-start;
    }
}
