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

body {
    font-family: 'Nunito', sans-serif;
    line-height: 1.6;
    color: #2c2c2c;
    background-color: #f5f5f5;
}

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

/* Navigation */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(10, 12, 14, 0.45);
    backdrop-filter: blur(6px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

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

.logo {
    font-size: 1.5rem;
    font-weight: 600;
    color: #ffffff;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
    padding: 10px 12px;
    border-radius: 10px;
    transition: color 0.25s ease, background-color 0.25s ease;
    min-height: 44px;
    display: flex;
    align-items: center;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.06);
    color: #ffffff;
}

.nav-link:focus-visible {
    outline: 3px solid #79E0D6;
    outline-offset: 2px;
}

.nav-link[aria-current="page"] {
    color: #ffffff;
    position: relative;
}

.nav-link[aria-current="page"]::after {
    content: '';
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: -12px;
    height: 2px;
    background: #79E0D6;
    border-radius: 2px;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.hamburger:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.hamburger:focus-visible {
    outline: 3px solid #79E0D6;
    outline-offset: 2px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    margin: 3px 0;
    transition: transform 200ms ease, opacity 200ms ease;
}

/* Hero Section */
.hero {
    min-height: 100dvh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(224, 224, 224, 0.9) 0%, rgba(192, 192, 192, 0.9) 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-block: clamp(48px, 10vh, 96px);
    padding-inline: 20px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/hero.JPG');
    background-size: cover;
    background-position: center 22%;
    background-attachment: fixed;
    z-index: 0;
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(10, 12, 14, 0.72) 0%, rgba(10, 12, 14, 0.35) 40%, rgba(10, 12, 14, 0.70) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 36ch;
    margin-inline: auto;
    text-align: left;
    display: grid;
    gap: 16px;
}

.hero-content h1 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 7vw, 4rem);
    margin-bottom: 0.5rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: clamp(1.1rem, 2.8vw, 1.8rem);
    margin-bottom: 1.5rem;
    font-weight: 600;
    opacity: 1;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #E3E3E3;
}

.hero-content p {
    font-family: 'Nunito', sans-serif;
    font-size: clamp(1rem, 3.8vw, 1.2rem);
    margin-bottom: 3rem;
    opacity: 0.9;
    max-width: 34ch;
    margin-left: 0;
    margin-right: auto;
    line-height: 1.5;
    max-width: 32ch;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
}

.cta-button.primary {
    font-family: 'Nunito', sans-serif;
    background: #79E0D6;
    color: #0B0C0E;
    padding: 0 20px;
    font-size: 1rem;
    font-weight: 600;
    border: 2px solid #79E0D6;
    border-radius: 16px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cta-button.primary:hover {
    background: #6BC7BB;
    border-color: #6BC7BB;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(121, 224, 214, 0.3);
}

.cta-button.primary:focus-visible {
    outline: 3px solid #79E0D6;
    outline-offset: 2px;
}

.cta-button.secondary {
    font-family: 'Nunito', sans-serif;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    padding: 0 20px;
    font-size: 1rem;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 16px;
    min-height: 48px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

.cta-button.secondary:focus-visible {
    outline: 3px solid #79E0D6;
    outline-offset: 2px;
}

.cta-button {
    display: inline-block;
    padding: 12px 30px;
    background: #606060;
    color: #f5f5f5;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: transform 0.3s;
}

.cta-button:hover {
    background: #404040;
    transform: translateY(-2px);
}

/* Model Info Section */
.model-info {
    padding: 40px 0;
    background: linear-gradient(180deg, rgba(10, 12, 14, 0.08) 0%, rgba(10, 12, 14, 0.02) 100%);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.info-strip {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px 0;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 100px;
}

.info-label {
    font-family: 'Nunito', sans-serif;
    font-size: 0.75rem;
    font-weight: 400;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 4px;
}

.info-value {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c2c2c;
    letter-spacing: -0.01em;
}

.info-divider {
    width: 1px;
    height: 30px;
    background: linear-gradient(180deg, transparent 0%, rgba(44, 44, 44, 0.2) 50%, transparent 100%);
    margin: 0 2rem;
}

@media (max-width: 768px) {
    .info-strip {
        flex-wrap: wrap;
        gap: 1.5rem;
        padding: 15px 0;
    }
    
    .info-divider {
        display: none;
    }
    
    .info-item {
        min-width: 80px;
    }
    
    .info-label {
        font-size: 0.7rem;
    }
    
    .info-value {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .model-info {
        padding: 30px 0;
    }
    
    .info-strip {
        gap: 1rem;
    }
    
    .info-item {
        min-width: 70px;
    }
    
    .info-label {
        font-size: 0.65rem;
    }
    
    .info-value {
        font-size: 0.95rem;
    }
}

/* About Section */
.about {
    padding: 100px 0;
    background: #ffffff;
}

.about h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

.about-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    align-items: start;
}

.about-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #2c2c2c;
}

.about-text p:last-of-type {
    margin-bottom: 2.5rem;
}

/* Measurements Section */
.measurements-section {
    margin-bottom: 2.5rem;
}

.measurements-section h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2c2c2c;
    margin-bottom: 1rem;
}

.measurements-table {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 1.5rem;
    border: 1px solid rgba(44, 44, 44, 0.08);
}

.measurement-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(44, 44, 44, 0.05);
}

.measurement-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.measurement-row:first-child {
    padding-top: 0;
}

.measurement-label {
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.measurement-value {
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 600;
    color: #2c2c2c;
}

/* Comp Card Section */
.comp-card-section {
    margin-top: 2rem;
}

.comp-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 12px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid rgba(44, 44, 44, 0.1);
    border-radius: 8px;
    text-decoration: none;
    color: #2c2c2c;
    font-family: 'Nunito', sans-serif;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.comp-card-link:hover {
    background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.comp-card-icon {
    font-size: 1.1rem;
    opacity: 0.8;
}

.about-image {
    position: sticky;
    top: 120px;
}

.about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.about-image img:hover {
    transform: scale(1.02);
}

/* About Highlights */
.about-highlights {
    list-style: none;
    margin: 2rem 0;
    padding: 0;
}

.about-highlights li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: 'Nunito', sans-serif;
    font-size: 1rem;
    line-height: 1.6;
    color: #2c2c2c;
}

.about-highlights li::before {
    content: '✓';
    position: absolute;
    left: 0;
    top: 0;
    color: #79E0D6;
    font-weight: 600;
    font-size: 1rem;
}

/* About CTAs */
.about-ctas {
    display: flex;
    gap: 1rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}

/* Gallery Section */
.gallery {
    padding: 100px 0;
    background: #f0f0f0;
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: #2c2c2c;
}

/* Gallery Filters */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    font-family: 'Nunito', sans-serif;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid rgba(44, 44, 44, 0.1);
    border-radius: 20px;
    color: #2c2c2c;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 1);
    border-color: rgba(44, 44, 44, 0.2);
    transform: translateY(-1px);
}

.filter-btn.active {
    background: #2c2c2c;
    color: #ffffff;
    border-color: #2c2c2c;
}

/* Gallery Grid - Masonry Layout */
.gallery-grid {
    columns: 3;
    column-gap: 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    position: relative;
    break-inside: avoid;
    margin-bottom: 1.5rem;
    overflow: hidden;
    border-radius: 12px;
    cursor: pointer;
    background: #ffffff;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.03);
}

/* Gallery caption overlay removed */

/* Responsive Gallery */
@media (max-width: 768px) {
    .gallery-grid {
        columns: 2;
        column-gap: 1rem;
    }
    
    .gallery-item {
        margin-bottom: 1rem;
        border-radius: 8px;
    }
    
    .gallery-filters {
        gap: 0.5rem;
        margin-bottom: 2rem;
    }
    
    .filter-btn {
        padding: 6px 16px;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .gallery {
        padding: 60px 0;
    }
    
    .gallery-grid {
        columns: 1;
    }
    
    .gallery h2 {
        font-size: 2rem;
        margin-bottom: 1.5rem;
    }
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #ffffff;
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: #2c2c2c;
}

.contact-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #2c2c2c;
}

.contact-info p {
    margin-bottom: 2.5rem;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Contact Methods Styling */
.contact-item {
    margin-bottom: 2rem;
}

.contact-label {
    display: block;
    font-family: 'Nunito', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #808080;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.contact-value {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 12px 16px;
    background: #f8f9fa;
    border: 1px solid rgba(44, 44, 44, 0.08);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-value:hover {
    background: #f1f3f4;
    border-color: rgba(44, 44, 44, 0.15);
}

.contact-text {
    flex: 1;
    font-family: 'Playfair Display', serif;
    font-size: 1rem;
    font-weight: 500;
    color: #2c2c2c;
    cursor: pointer;
    user-select: all;
    text-decoration: none;
}

.contact-text:hover {
    color: #79E0D6;
}

.contact-text:focus-visible {
    outline: 2px solid #79E0D6;
    outline-offset: 2px;
    border-radius: 4px;
}

.copy-btn {
    background: transparent;
    border: none;
    font-size: 1rem;
    cursor: pointer;
    padding: 4px;
    border-radius: 4px;
    opacity: 0.6;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
}

.copy-btn:hover {
    opacity: 1;
    background: rgba(44, 44, 44, 0.05);
}

.copy-btn:active {
    transform: scale(0.95);
}

.copy-success {
    background: #e8f5e8 !important;
    border-color: #4caf50 !important;
}

/* Social Links Styling */
.social-links {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 12px 18px;
    background: #606060;
    color: #f5f5f5;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #404040;
    transform: translateY(-1px);
}

.social-icon {
    font-size: 1rem;
}

.social-link.telegram {
    background: #0088cc;
}

.social-link.telegram:hover {
    background: #006ba6;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 136, 204, 0.4);
}

.social-link.whatsapp {
    background: #25D366;
}

.social-link.whatsapp:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35);
}


/* Scroll Cue */
.scroll-cue {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: bounce 2s infinite;
}

.scroll-cue:hover {
    color: #79E0D6;
    transform: translateX(-50%) translateY(-3px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes slide-fade-in {
    from {
        transform: translateY(-6px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media (prefers-reduced-motion: reduce) {
    .scroll-cue {
        animation: none;
    }
}

/* Footer */
footer {
    background: #404040;
    color: #f5f5f5;
    text-align: center;
    padding: 2rem 0;
}

footer p {
    opacity: 0.8;
    margin: 0;
}

footer p:first-child {
    margin-bottom: 0.5rem;
}

.footer-credit {
    font-size: 0.85rem;
    opacity: 0.6;
    font-style: italic;
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    margin: auto;
    display: block;
    max-width: 90%;
    max-height: 90%;
}

.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
}

/* Lightbox caption removed */

/* Responsive Design */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 15px;
    }

    .nav-menu {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 12, 14, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 8px 0;
        border-top: 1px solid rgba(255, 255, 255, 0.08);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
        border-radius: 0 0 14px 14px;
        animation: slide-fade-in 220ms ease both;
    }

    .nav-menu li {
        margin: 0;
        padding: 0 12px;
    }

    .nav-menu li:not(:last-child) .nav-link {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav-link {
        display: block;
        padding: 14px 14px;
        border-radius: 12px;
        font-size: 1.1rem;
        letter-spacing: 0.01em;
        color: rgba(255, 255, 255, 0.95);
        min-height: 44px;
    }

    .nav-link:hover {
        background: rgba(255, 255, 255, 0.06);
        color: #ffffff;
        transform: none;
    }

    .nav-link:active {
        background: rgba(255, 255, 255, 0.10);
    }

    .nav-link[aria-current="page"] {
        background: rgba(255, 255, 255, 0.06);
        color: #ffffff;
        position: relative;
    }

    .nav-link[aria-current="page"]::before {
        content: '';
        position: absolute;
        left: 6px;
        top: 10px;
        bottom: 10px;
        width: 3px;
        background: #79E0D6;
        border-radius: 3px;
    }

    .nav-link[aria-current="page"]::after {
        display: none;
    }

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

    .hamburger {
        display: flex;
    }

    .hamburger:focus-visible {
        outline: 3px solid #79E0D6;
        outline-offset: 2px;
    }

    .hamburger.active span:nth-child(1) {
        transform: translateY(6px) rotate(45deg);
    }

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

    .hamburger.active span:nth-child(3) {
        transform: translateY(-6px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

    .hero-content p {
        font-size: 1.1rem;
    }

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

    .hero-content p {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .about-image {
        position: static;
        order: -1;
    }
    
    .measurements-table {
        padding: 1rem;
    }
    
    .measurement-row {
        padding: 0.5rem 0;
    }

    .contact-content {
        flex-direction: column;
    }
    
    .contact-item {
        margin-bottom: 1.5rem;
    }
    
    .contact-value {
        padding: 10px 12px;
        gap: 0.75rem;
    }
    
    .contact-text {
        font-size: 0.9rem;
    }
    
    .copy-btn {
        width: 24px;
        height: 24px;
        font-size: 0.9rem;
    }
    
    .social-links {
        justify-content: center;
        gap: 0.75rem;
    }
    
    .social-link {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .stats {
        flex-direction: column;
        gap: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1rem;
    }
}

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

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.2rem;
    }

    .about h2,
    .gallery h2,
    .contact h2 {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }
}