:root {
    --primary-white: #ffffff;
    --soft-white: #fafafa;
    --cream: #f8f8f8;
    --light-gray: #e8e8e8;
    --text-dark: #1a1a1a;
    --text-medium: #4a4a4a;
    --text-light: #888888;
    --accent-gold: #d4af37;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: 'Outfit', sans-serif;
    background: var(--primary-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}


/* Mobile Header */

.mobile-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

.header-logo img {
    height: 40px;
}

.menu-toggle {
    background: none;
    border: none;
    width: 30px;
    height: 24px;
    position: relative;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--text-dark);
    position: absolute;
    left: 0;
    transition: all 0.3s ease;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span:nth-child(3) {
    bottom: 0;
}

.menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

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

.menu-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}


/* Mobile Navigation */

.mobile-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--primary-white);
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-menu {
    list-style: none;
    padding: 2rem 0;
}

.mobile-menu li {
    border-bottom: 1px solid var(--light-gray);
}

.mobile-menu a {
    display: block;
    padding: 1.2rem 2rem;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.mobile-menu a:active {
    background: var(--cream);
    padding-left: 2.5rem;
}


/* Hero Section */

.hero-mobile {
    margin-top: 72px;
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.6) 100%);
}

.hero-content-mobile {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 2rem;
}

.hero-content-mobile h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.5rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.hero-content-mobile p {
    font-size: 1rem;
    color: var(--text-medium);
    margin-bottom: 2rem;
    font-weight: 300;
}

.hero-cta-mobile {
    background: var(--text-dark);
    color: var(--primary-white);
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-cta-mobile:active {
    transform: scale(0.95);
    background: var(--accent-gold);
}


/* Sections */

section {
    padding: 4rem 1.5rem;
}

.section-title-mobile {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.title-line {
    width: 60px;
    height: 2px;
    background: var(--text-dark);
    margin: 0 auto 2rem;
}


/* About Section */

.about-mobile {
    background: var(--soft-white);
}

.about-text-mobile {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--text-medium);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
}

.features-mobile {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.feature-mobile {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.feature-mobile i {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.feature-mobile h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.feature-mobile p {
    color: var(--text-light);
    font-size: 0.95rem;
    font-weight: 300;
}


/* Portfolio Section */

.portfolio-mobile {
    background: var(--primary-white);
}

.event-mobile {
    margin-bottom: 3rem;
}

.event-title-mobile {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.event-desc-mobile {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.swipe-gallery {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.swipe-gallery::-webkit-scrollbar {
    display: none;
}

.gallery-track {
    display: flex;
    gap: 1rem;
    padding: 0.5rem 0;
}

.gallery-track img {
    min-width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-track img:active {
    transform: scale(0.98);
}


/* Brands Section */

.brands-mobile {
    background: var(--cream);
}

.brands-list-mobile {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.brand-mobile {
    background: var(--primary-white);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.brand-mobile h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--text-dark);
}

.brand-credit {
    font-size: 0.85rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 0.3rem;
}


/* Contact Section */

.contact-mobile {
    background: var(--primary-white);
}

.contact-info-mobile {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 2rem;
}

.info-mobile {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.info-mobile i {
    font-size: 1.5rem;
    color: var(--text-dark);
}

.info-mobile h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 0.2rem;
}

.info-mobile p {
    font-size: 0.95rem;
    color: var(--text-medium);
}

.info-mobile a {
    color: var(--text-medium);
    text-decoration: none;
    word-break: break-all;
}

.social-mobile {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--text-dark);
    color: var(--primary-white);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-btn:active {
    transform: scale(0.9);
    background: var(--accent-gold);
}

.inquiry-btn-mobile {
    width: 100%;
    background: var(--text-dark);
    color: var(--primary-white);
    border: none;
    padding: 1.2rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.05rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.inquiry-btn-mobile:active {
    transform: scale(0.98);
    background: var(--accent-gold);
}


/* Footer */

.footer-mobile {
    background: var(--text-dark);
    color: var(--primary-white);
    text-align: center;
    padding: 2rem 1.5rem;
}

.footer-mobile p {
    margin: 0.5rem 0;
    font-size: 0.9rem;
    font-weight: 300;
}

.footer-tag {
    opacity: 0.7;
    font-size: 0.8rem;
}


/* Modal */

.modal-mobile {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    overflow-y: auto;
}

.modal-content-mobile {
    background: var(--primary-white);
    margin: 10% auto;
    padding: 2rem 1.5rem;
    width: 90%;
    max-width: 500px;
    border-radius: 16px;
    position: relative;
}

.modal-close-mobile {
    position: absolute;
    right: 1.5rem;
    top: 1.5rem;
    font-size: 2rem;
    font-weight: 300;
    color: var(--text-light);
    cursor: pointer;
}

.modal-content-mobile h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.modal-subtitle-mobile {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 0.95rem;
}

.form-group-mobile {
    margin-bottom: 1.5rem;
}

.form-group-mobile label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-size: 0.9rem;
}

.form-group-mobile input,
.form-group-mobile select,
.form-group-mobile textarea {
    width: 100%;
    padding: 0.9rem;
    border: 1px solid var(--light-gray);
    border-radius: 8px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    background: var(--soft-white);
}

.form-group-mobile input:focus,
.form-group-mobile select:focus,
.form-group-mobile textarea:focus {
    outline: none;
    border-color: var(--text-dark);
    background: var(--primary-white);
}

.form-submit-mobile {
    width: 100%;
    background: var(--text-dark);
    color: var(--primary-white);
    border: none;
    padding: 1rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 1rem;
    cursor: pointer;
    margin-top: 1rem;
}

.form-submit-mobile:active {
    transform: scale(0.98);
    background: var(--accent-gold);
}


/* Lightbox */

.lightbox-mobile {
    display: none;
    position: fixed;
    z-index: 3000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.98);
}

.lightbox-close-mobile {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--text-dark);
    z-index: 3001;
    cursor: pointer;
}

#lightboxImage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 80%;
    object-fit: contain;
    border-radius: 8px;
}

.lightbox-controls {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 2rem;
}

.lightbox-controls button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-controls button:active {
    transform: scale(0.9);
}