:root {
    --bg-color: #0a0a0a;
    --card-bg: #151515;
    --text-color: #f1f1f1;
    --accent-color: #d4af37; /* Gold/Champagne */
    --hover-accent: #c5a028;
    --font-luxury: 'Prata', serif;
    --font-main: 'Prata', serif;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    font-family: var(--font-main);
    line-height: 1.6;
}

header {
    background: rgba(0, 0, 0, 0.9);
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    max-height: 60px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Sidebar Menu */
.menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 1001;
}

.menu-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--accent-color);
    transition: 0.3s;
}

.sidebar {
    position: fixed;
    top: 0;
    right: -350px;
    width: 350px;
    height: 100%;
    background-color: #000;
    z-index: 2000;
    transition: 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
    padding: 100px 50px;
    border-left: 1px solid var(--accent-color);
}

.sidebar.active {
    right: 0;
}

.close-menu {
    position: absolute;
    top: 30px;
    right: 30px;
    background: none;
    border: none;
    color: var(--accent-color);
    font-size: 2.5rem;
    cursor: pointer;
}

.sidebar-nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.sidebar-nav a {
    color: var(--text-color);
    text-decoration: none;
    font-size: 1.8rem;
    font-family: var(--font-luxury);
    text-transform: uppercase;
    letter-spacing: 3px;
    transition: 0.3s;
}

.sidebar-nav a:hover {
    color: var(--accent-color);
    padding-left: 15px;
}

.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
}

body.no-scroll {
    overflow: hidden;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.8)), url('img/logo_casadeluxe.png') center/contain no-repeat;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.hero-content {
    max-width: 900px;
    animation: fadeIn 2s ease;
}

.hero-title {
    font-size: 4rem;
    font-family: var(--font-luxury);
    color: var(--accent-color);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.4rem;
    color: #ccc;
    margin-bottom: 3rem;
    letter-spacing: 1px;
}

.hero-btns {
    display: flex;
    gap: 20px;
    justify-content: center;
}

main {
    padding-top: 120px;
}

/* Sections */
.section {
    padding: 100px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.container-small {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    text-align: center;
}

.luxury-title {
    color: var(--accent-color);
    font-family: var(--font-luxury);
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 5px;
    margin-bottom: 4rem;
    position: relative;
    display: inline-block;
    padding-bottom: 15px;
}

.luxury-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: var(--accent-color);
}

.intro-text p {
    font-size: 1.2rem;
    color: #bbb;
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--card-bg);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: all 0.4s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-color);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
    display: block;
}

.feature-card h3 {
    color: var(--accent-color);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.feature-card p {
    color: #999;
}

/* Casting / Model Grid */
.model-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.model-card {
    position: relative;
    overflow: hidden;
    height: 450px;
    background: #000;
}

.model-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
    opacity: 0.8;
}

.model-card:hover .model-image {
    transform: scale(1.1);
    opacity: 1;
}

.model-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(transparent, rgba(0,0,0,0.9));
}

.model-name {
    color: var(--accent-color);
    font-family: var(--font-luxury);
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* Lists */
.luxury-list {
    list-style: none;
    margin: 40px 0;
}

.luxury-list li {
    font-size: 1.2rem;
    color: #ddd;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}

.luxury-list li::before {
    content: '✦';
    color: var(--accent-color);
    position: absolute;
    left: 0;
}

/* Buttons */
.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background: var(--accent-color);
    color: #000;
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    border: 1px solid var(--accent-color);
}

.cta-button:hover {
    background: transparent;
    color: var(--accent-color);
    transform: translateY(-3px);
}

.cta-button.secondary {
    background: transparent;
    color: var(--text-color);
    border-color: var(--text-color);
}

.cta-button.secondary:hover {
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 20px 60px;
}

/* Final CTA Card */
.final-cta-card {
    background: var(--card-bg);
    padding: 80px 40px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.final-cta-card p {
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.3rem;
    color: #aaa;
}

/* Footer */
footer {
    background: #000;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* Age Verification Modal */
.age-verification-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    backdrop-filter: blur(15px);
}

.age-verification-content {
    background: var(--card-bg);
    padding: 60px 40px;
    border: 1px solid var(--accent-color);
    text-align: center;
    max-width: 500px;
    width: 90%;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.2);
}

.age-verification-content img.modal-logo {
    max-width: 150px;
    margin-bottom: 30px;
}

.age-verification-content h2 {
    font-family: var(--font-luxury);
    color: var(--accent-color);
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: 2px;
}

.age-verification-content p {
    color: #ccc;
    margin-bottom: 40px;
    font-size: 1.1rem;
}

.age-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.age-btn {
    padding: 12px 30px;
    font-size: 1rem;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: bold;
    transition: 0.3s;
}

.btn-yes {
    background: var(--accent-color);
    color: #000;
    border: 1px solid var(--accent-color);
}

.btn-yes:hover {
    background: transparent;
    color: var(--accent-color);
}

.btn-no {
    background: transparent;
    color: #999;
    border: 1px solid #444;
}

.btn-no:hover {
    border-color: #f44336;
    color: #f44336;
}
}

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

.footer-logo {
    max-height: 80px;
    margin-bottom: 20px;
}

.footer-col h4 {
    color: var(--accent-color);
    text-transform: uppercase;
    margin-bottom: 25px;
    letter-spacing: 2px;
}

.footer-col p {
    color: #777;
    margin-bottom: 10px;
}

.footer-legal a {
    color: #555;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.footer-legal a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #222;
    padding-top: 30px;
}

.footer-bottom span {
    color: var(--accent-color);
}

/* Model Profile Page Styles */
.back-button {
    margin: 120px 0 30px;
}

.back-button a {
    color: var(--accent-color);
    text-decoration: none;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.model-detail-layout {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    background: var(--card-bg);
    padding: 40px;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.5);
    margin-bottom: 80px;
}

.slider-container {
    flex: 1;
    max-width: 550px;
    position: relative;
}

.slider {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    aspect-ratio: 3/4;
    background: #000;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.4);
    color: var(--accent-color);
    border: 1px solid rgba(212, 175, 55, 0.3);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--accent-color);
    color: #000;
}

.prev { left: 20px; }
.next { right: 20px; }

.slider-counter {
    text-align: center;
    margin-top: 20px;
    color: #888;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.model-info-side {
    flex: 1;
}

.model-title-detail {
    font-family: var(--font-luxury);
    font-size: 4rem;
    color: var(--accent-color);
    margin-bottom: 2rem;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    padding-bottom: 1rem;
}

.model-info-side h3 {
    font-family: var(--font-luxury);
    color: var(--accent-color);
    font-size: 1.5rem;
    margin: 2rem 0 1rem;
    text-transform: uppercase;
}

.model-services ul {
    list-style: none;
}

.model-services li {
    padding: 10px 0;
    border-bottom: 1px solid #222;
    color: #ccc;
}

.model-services li::before {
    content: '✦';
    color: var(--accent-color);
    margin-right: 15px;
}

.model-description p {
    color: #aaa;
    line-height: 1.8;
    font-size: 1.1rem;
}

/* Animations */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Media Queries */
@media (max-width: 992px) {
    .model-detail-layout {
        flex-direction: column;
        padding: 20px;
    }
    .slider-container {
        max-width: 100%;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .hero-title { font-size: 2.5rem; }
    .hero-btns { flex-direction: column; }
    .luxury-title { font-size: 2rem; }
    .sidebar { width: 100%; right: -100%; }
}
