/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --gold: #D4AF37;
    --gold-light: #F4E4B4;
    --gold-dark: #B8941E;
    --black: #0A0A0A;
    --black-light: #1A1A1A;
    --white: #FFFFFF;
    --gray: #888888;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--black);
    color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding: 20px 0;
    transition: all 0.3s ease;
}

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

.logo-container {
    flex: 0 0 auto;
}

.logo {
    height: 50px;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.logo:hover {
    filter: brightness(0) saturate(100%) invert(71%) sepia(40%) saturate(494%) hue-rotate(5deg) brightness(93%) contrast(87%);
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 50px;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-weight: 400;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: all 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

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

.nav-links a:hover::after {
    width: 100%;
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 0;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background: var(--gold);
    transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(7px, 7px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

.mobile-cta {
    display: none;
}

.btn-luxury {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-luxury::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-luxury:hover::before {
    left: 100%;
}

.btn-luxury:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
}

.btn-drops {
    background: transparent;
    border: 2px solid var(--gold);
    padding: 12px 30px;
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    color: var(--gold);
    margin-left: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2),
                inset 0 0 20px rgba(212, 175, 55, 0.1);
}

.btn-drops::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        transparent,
        rgba(212, 175, 55, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

.btn-drops::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: radial-gradient(circle, var(--gold) 0%, transparent 70%);
    opacity: 0;
    transition: all 0.5s ease;
}

.btn-drops:hover::before {
    left: 100%;
}

.btn-drops:hover::after {
    width: 300px;
    height: 300px;
    opacity: 0.15;
}

.btn-drops:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4),
                inset 0 0 30px rgba(212, 175, 55, 0.2);
    border-color: var(--gold-light);
    color: var(--gold-light);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.btn-drops:active {
    transform: translateY(0) scale(1);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
                linear-gradient(135deg, var(--black) 0%, var(--black-light) 100%);
    animation: gradientShift 15s ease infinite;
}

.floating-logos {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.floating-logos::before,
.floating-logos::after {
    content: '';
    position: absolute;
    background-image: url('Full Logo + Letters (Black).svg');
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
    opacity: 0.05;
}

/* Logo positions - we'll add more with nth-child in JS */
.floating-logo {
    position: absolute;
    background-image: url('Full Logo + Letters (Black).svg');
    background-size: contain;
    background-repeat: no-repeat;
    filter: brightness(0) invert(1);
    opacity: 0.05;
    pointer-events: none;
}

@keyframes gradientShift {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.8; }
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: 0 40px;
}

.hero-subtitle {
    display: block;
    font-size: 14px;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 30px;
    animation: fadeInUp 1s ease;
}

.hero-title {
    font-size: clamp(60px, 10vw, 120px);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title .line {
    display: block;
    animation: fadeInUp 1s ease backwards;
}

.hero-title .line:nth-child(1) { animation-delay: 0.2s; }
.hero-title .line:nth-child(2) { animation-delay: 0.4s; }

.hero-description {
    font-size: 18px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 50px;
    animation: fadeInUp 1s ease 0.6s backwards;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    animation: fadeInUp 1s ease 0.8s backwards;
}

.btn-primary, .btn-secondary {
    padding: 18px 40px;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    background: transparent;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: var(--gold);
    color: var(--black);
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 100%;
    height: 100%;
    background: var(--gold-light);
    border-radius: 50%;
    transition: transform 0.5s ease;
    z-index: -1;
}

.btn-primary:hover::before {
    transform: translate(-50%, -50%) scale(2);
}

.btn-secondary {
    color: var(--gold);
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-secondary:hover {
    color: var(--black);
}

.btn-secondary:hover::before {
    left: 0;
}

/* Dots Navigation */
.dots-nav {
    position: fixed;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.dots-nav::before {
    content: 'SCROLL';
    position: absolute;
    right: 30px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-size: 11px;
    letter-spacing: 3px;
    color: var(--gold);
    font-weight: 500;
}

.dots-nav::after {
    content: '↓';
    position: absolute;
    right: -15px;
    bottom: -50px;
    font-size: 20px;
    color: var(--gold);
    animation: scrollArrow 2s ease infinite;
}

@keyframes scrollArrow {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(10px);
        opacity: 0.5;
    }
}

.dot {
    position: relative;
    width: 12px;
    height: 12px;
    border: 2px solid var(--gold);
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.dot::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    transition: transform 0.3s ease;
}

.dot.active::before,
.dot:hover::before {
    transform: translate(-50%, -50%) scale(1);
}

.dot-label {
    position: absolute;
    right: 25px;
    top: 50%;
    transform: translateY(-50%);
    white-space: nowrap;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    background: rgba(10, 10, 10, 0.9);
    padding: 5px 15px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.dot:hover .dot-label {
    opacity: 1;
}

.dot:hover {
    transform: scale(1.3);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
}

@media (max-width: 1024px) {
    .dots-nav {
        display: none;
    }
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    display: none;
    align-items: center;
    justify-content: center;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    animation: fadeIn 0.3s ease;
}

.modal-content {
    position: relative;
    z-index: 2;
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%);
    border: 2px solid var(--gold);
    padding: 60px 80px;
    max-width: 600px;
    text-align: center;
    animation: modalSlideIn 0.5s ease;
    box-shadow: 0 0 50px rgba(212, 175, 55, 0.3);
}

.modal-content::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    pointer-events: none;
}

.modal-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 40px;
    font-family: 'Playfair Display', serif;
    line-height: 1.4;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.modal-btn {
    padding: 18px 50px;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid var(--gold);
    background: transparent;
    color: var(--gold);
    position: relative;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

.modal-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.4s ease;
    z-index: -1;
}

.modal-btn:hover::before {
    left: 0;
}

.modal-btn:hover {
    color: var(--black);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.5);
}

.modal-btn-yes {
    background: var(--gold);
    color: var(--black);
}

.modal-btn-yes::before {
    background: var(--gold-light);
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-50px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Toast */
.toast {
    position: fixed;
    top: 40px;
    left: 50%;
    transform: translate(-50%, -200px);
    background: linear-gradient(135deg, var(--black-light) 0%, var(--black) 100%);
    border: 2px solid var(--gold);
    padding: 20px 40px;
    border-radius: 0;
    z-index: 10001;
    opacity: 0;
    transition: all 0.5s ease;
    box-shadow: 0 10px 40px rgba(212, 175, 55, 0.3);
}

.toast.show {
    opacity: 1;
    transform: translate(-50%, 0);
}

.toast p {
    color: var(--gold);
    font-size: 16px;
    letter-spacing: 1px;
    margin: 0;
    font-style: italic;
}

/* Drops Modal Specific */
.drops-modal-content {
    max-width: 800px;
    width: 90%;
    padding: 50px;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    font-size: 30px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
}

.modal-close:hover {
    background: var(--gold);
    color: var(--black);
    transform: rotate(90deg);
}

/* Tabs */
.tabs {
    display: flex;
    gap: 0;
    margin: 30px 0;
    border-bottom: 2px solid rgba(212, 175, 55, 0.2);
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    color: var(--gray);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    position: relative;
}

.tab-btn::before {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.tab-btn:hover {
    color: var(--gold);
}

.tab-btn.active {
    color: var(--gold);
}

.tab-btn.active::before {
    width: 100%;
}

/* Tab Content */
.tab-content {
    display: none;
    padding: 30px 0;
    animation: fadeIn 0.5s ease;
    min-height: 500px;
}

.tab-content.active {
    display: block;
}

.tab-content h3 {
    font-size: 28px;
    color: var(--gold);
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.tab-content p {
    color: var(--gray);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.tab-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.tab-content ul li {
    color: var(--white);
    padding: 12px 0 12px 30px;
    position: relative;
    font-size: 16px;
}

.tab-content ul li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 18px;
}

/* Forms */
.preventa-form,
.validacion-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 30px;
}

.input-luxury {
    width: 100%;
    padding: 18px 20px;
    background: rgba(26, 26, 26, 0.5);
    border: 2px solid rgba(212, 175, 55, 0.2);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.input-luxury:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    background: rgba(26, 26, 26, 0.8);
}

.input-luxury::placeholder {
    color: var(--gray);
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 2px;
}

.validacion-result {
    margin-top: 20px;
    padding: 20px;
    border: 2px solid var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.result-text {
    color: var(--gold);
    font-size: 16px;
    text-align: center;
    margin: 0;
}

/* Prenda Card */
.prenda-card {
    border: 2px solid var(--gold);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.05) 0%, rgba(10, 10, 10, 0.8) 100%);
    position: relative;
    animation: fadeIn 0.5s ease;
}

.card-back-btn {
    position: absolute;
    top: 20px;
    left: 20px;
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 8px 16px;
    font-size: 12px;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    z-index: 10;
}

.card-back-btn:hover {
    background: var(--gold);
    color: var(--black);
}

.prenda-card::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    pointer-events: none;
}

.card-header {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    padding: 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.card-logo {
    height: 40px;
    filter: brightness(0);
}

.card-header h4 {
    color: var(--black);
    font-size: 20px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
    font-family: 'Montserrat', sans-serif;
}

.card-body {
    padding: 30px;
}

.card-field {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.card-field:last-child {
    border-bottom: none;
}

.field-label {
    color: var(--gray);
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.field-value {
    color: var(--gold);
    font-size: 16px;
    font-weight: 600;
    font-family: 'Playfair Display', serif;
}

.btn-titularidad {
    width: 100%;
    padding: 18px;
    background: transparent;
    border: 2px solid var(--gold);
    border-top: none;
    color: var(--gold);
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.btn-titularidad::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gold);
    transition: left 0.4s ease;
    z-index: -1;
}

.btn-titularidad:hover::before {
    left: 0;
}

.btn-titularidad:hover {
    color: var(--black);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
}

@media (max-width: 768px) {
    .modal-content {
        padding: 40px 30px;
        margin: 20px;
    }

    .drops-modal-content {
        padding: 40px 20px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-buttons {
        flex-direction: column;
    }

    .modal-btn {
        width: 100%;
    }

    .tabs {
        flex-direction: column;
        border-bottom: none;
    }

    .tab-btn {
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    }

    .toast {
        top: 20px;
        left: 20px;
        right: 20px;
        transform: translate(0, -200px);
        width: calc(100% - 40px);
    }

    .toast.show {
        transform: translate(0, 0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* Featured Section */
.featured {
    padding: 150px 0;
    background: var(--black);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-subtitle {
    display: block;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.section-title {
    font-size: clamp(40px, 6vw, 60px);
    font-weight: 700;
    color: var(--white);
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.featured-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.5s ease;
}


.featured-image {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
}

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

.featured-item:hover .featured-image img {
    transform: scale(1.1);
}


.placeholder-img {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    font-size: 20px;
    color: var(--gold);
    transition: all 0.5s ease;
}

.featured-item:hover .placeholder-img {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, transparent 100%);
}

.featured-info {
    padding: 30px;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-top: none;
    transition: all 0.3s ease;
}

.featured-item:hover .featured-info {
    background: rgba(26, 26, 26, 1);
    border-color: var(--gold);
}

.featured-info h3 {
    font-size: 24px;
    margin-bottom: 10px;
    color: var(--white);
}

.featured-info p {
    color: var(--gray);
    font-size: 14px;
    margin-bottom: 15px;
}

.price {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
}

/* About Section */
.about {
    padding: 150px 0;
    background: linear-gradient(180deg, var(--black) 0%, var(--black-light) 100%);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    padding-right: 40px;
}

.about-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
    margin-bottom: 20px;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 60px;
}

.stat {
    text-align: center;
    padding: 30px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    transition: all 0.3s ease;
}

.stat:hover {
    border-color: var(--gold);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.1);
}

.stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--gold);
    font-family: 'Playfair Display', serif;
    margin-bottom: 10px;
    min-width: 120px;
}

.stat-label {
    display: block;
    font-size: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gray);
}

.about-image {
    position: relative;
}

.image-frame {
    position: relative;
    padding: 20px;
    border: 2px solid var(--gold);
}

.image-frame::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: 10px;
    bottom: 10px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    z-index: -1;
}

.placeholder-img-large {
    width: 100%;
    height: 600px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 100%);
    font-size: 24px;
    color: var(--gold);
}

.about-img {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* Experience Section */
.experience {
    position: relative;
    padding: 200px 0;
    text-align: center;
    overflow: hidden;
}

.experience-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, rgba(10, 10, 10, 0.9) 100%),
                url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(212,175,55,0.1)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
}

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

.experience-title {
    font-size: clamp(40px, 6vw, 70px);
    font-weight: 700;
    margin-bottom: 30px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.experience-text {
    font-size: 20px;
    color: var(--gray);
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Section */
.contact {
    padding: 150px 0;
    background: var(--black);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.contact-details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-item h4 {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
}

.contact-item p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--gray);
}

.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 20px;
    background: var(--black-light);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

/* Footer */
.footer {
    padding: 80px 0 40px;
    background: var(--black-light);
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
}

.footer-logo .logo {
    height: 60px;
    filter: brightness(0) invert(1);
}

.footer-social {
    display: flex;
    gap: 40px;
}

.social-link {
    color: var(--gray);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

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

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 175, 55, 0.1);
}

.footer-bottom p {
    color: var(--gray);
    font-size: 12px;
    letter-spacing: 1px;
}

/* Responsive */
/* Tablet */
@media (max-width: 1024px) {
    .nav-links {
        gap: 30px;
    }

    .featured-grid,
    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .about-content {
        padding-right: 0;
    }

    .about-stats {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-title {
        font-size: 80px;
    }

    .drops-modal-content {
        width: 95%;
        padding: 40px 30px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .desktop-only {
        display: none !important;
    }

    .nav-links {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        height: 100vh !important;
        width: 280px !important;
        background: rgba(10, 10, 10, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 40px !important;
        transition: right 0.4s ease !important;
        border-left: 2px solid var(--gold) !important;
        z-index: 1000 !important;
        padding: 40px !important;
        margin: 0 !important;
        list-style: none !important;
    }

    .nav-links.active {
        right: 0 !important;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 18px;
    }

    .mobile-cta {
        display: flex;
        flex-direction: column;
        gap: 15px;
        width: 100%;
    }

    .mobile-cta .btn-luxury,
    .mobile-cta .btn-drops {
        width: 100%;
        margin: 0;
    }

    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .logo {
        height: 35px;
    }

    .hero-title {
        font-size: 48px;
    }

    .hero-description {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 100%;
    }

    .featured-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .section-title {
        font-size: 36px;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-social {
        flex-direction: row;
        gap: 30px;
    }

    .modal-content {
        padding: 30px 20px;
        margin: 20px;
        max-width: calc(100% - 40px);
    }

    .drops-modal-content {
        padding: 30px 20px;
        max-width: calc(100% - 40px);
    }

    .modal-title {
        font-size: 22px;
    }

    .tabs {
        flex-direction: column;
        border-bottom: none;
    }

    .tab-btn {
        border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        padding: 18px;
    }

    .tab-content {
        min-height: 300px;
        padding: 20px 0;
    }

    .tab-content h3 {
        font-size: 24px;
    }

    .tab-content p {
        font-size: 14px;
    }

    .prenda-card {
        margin: 0;
    }

    .card-body {
        padding: 20px;
    }

    .card-field {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 12px 0;
    }

    .field-value {
        font-size: 14px;
    }

    .toast {
        top: 20px;
        left: 20px;
        right: 20px;
        width: auto;
        padding: 15px 20px;
        transform: translate(0, -200px);
    }

    .toast.show {
        transform: translate(0, 0);
    }

    .toast p {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-container {
        padding: 0 20px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 300px;
    }

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

    .footer-content {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }

    .footer-social {
        flex-direction: column;
        gap: 20px;
    }
}
