: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;
}

html {
    scroll-behavior: smooth;
}

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

.container-tablet {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 3rem;
}


/* Navigation */

.navbar-tablet {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1.2rem 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

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

.nav-logo-tablet img {
    height: 45px;
}

.nav-menu-tablet {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link-tablet {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 400;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.nav-link-tablet:hover {
    color: var(--text-medium);
}

.dropdown-tablet {
    position: relative;
}

.dropdown-content-tablet {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--primary-white);
    min-width: 200px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    border-radius: 8px;
    padding: 1rem 0;
    margin-top: 1rem;
}

.dropdown-tablet:hover .dropdown-content-tablet {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-content-tablet a {
    display: block;
    padding: 0.7rem 1.2rem;
    color: var(--text-medium);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.85rem;
}

.dropdown-content-tablet a:hover {
    background: var(--cream);
    color: var(--text-dark);
}

.book-btn-tablet {
    background: var(--text-dark);
    color: var(--primary-white);
    border: none;
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.book-btn-tablet:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}


/* Hero Section */

.hero-tablet {
    margin-top: 81px;
    height: 90vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

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

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

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

.hero-content-tablet p {
    font-size: 1.2rem;
    color: var(--text-medium);
    margin-bottom: 2.5rem;
    font-weight: 300;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-primary-tablet,
.cta-secondary-tablet {
    padding: 0.9rem 2.5rem;
    border-radius: 50px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cta-primary-tablet {
    background: var(--text-dark);
    color: var(--primary-white);
    border: 2px solid var(--text-dark);
}

.cta-primary-tablet:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.cta-secondary-tablet {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--text-dark);
}

.cta-secondary-tablet:hover {
    background: var(--text-dark);
    color: var(--primary-white);
}


/* Sections */

section {
    padding: 6rem 0;
}

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

.title-underline-tablet {
    width: 70px;
    height: 2px;
    background: var(--text-dark);
    margin: 0 auto 1.5rem;
}

.section-subtitle-tablet {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-size: 1.05rem;
    font-weight: 300;
}


/* About Section */

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

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

.features-tablet {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card-tablet {
    background: var(--primary-white);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.feature-card-tablet:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

.feature-card-tablet h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.6rem;
    font-weight: 500;
    margin-bottom: 0.8rem;
}

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


/* Portfolio Section */

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

.event-showcase-tablet {
    margin-bottom: 5rem;
}

.event-header-tablet {
    text-align: center;
    margin-bottom: 2.5rem;
}

.event-header-tablet h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.event-header-tablet p {
    font-size: 1.05rem;
    color: var(--text-light);
    font-weight: 300;
}

.gallery-grid-tablet {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.gallery-item-tablet {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-item-tablet img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-overlay-tablet {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-overlay-tablet i {
    font-size: 1.8rem;
    color: var(--text-dark);
}

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

.gallery-item-tablet:hover .gallery-overlay-tablet {
    opacity: 1;
}


/* Brands Section */

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

.brands-grid-tablet {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.brand-card-tablet {
    background: var(--primary-white);
    padding: 2.5rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.brand-card-tablet:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

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

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


/* Contact Section */

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

.contact-content-tablet {
    max-width: 700px;
    margin: 0 auto;
}

.contact-info-tablet {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 2.5rem;
}

.info-item-tablet {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

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

.info-item-tablet h4 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
}

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

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

.social-links-tablet {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.social-icon-tablet {
    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-icon-tablet:hover {
    transform: translateY(-5px);
    background: var(--accent-gold);
}

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

.contact-cta-tablet:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}


/* Footer */

.footer-tablet {
    background: var(--text-dark);
    color: var(--primary-white);
    text-align: center;
    padding: 2.5rem 0;
}

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

.footer-tagline-tablet {
    opacity: 0.7;
    font-size: 0.85rem;
}


/* Modal */

.modal-tablet {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.modal-content-tablet {
    background: var(--primary-white);
    margin: 5% auto;
    padding: 2.5rem 3rem;
    width: 90%;
    max-width: 550px;
    border-radius: 16px;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.modal-close-tablet:hover {
    color: var(--text-dark);
}

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

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

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

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

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

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

.form-submit-tablet {
    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;
    transition: all 0.3s ease;
    margin-top: 1rem;
}

.form-submit-tablet:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
}


/* Lightbox */

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

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

#lightboxImage {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 85%;
    object-fit: contain;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border-radius: 8px;
}

.lightbox-nav-tablet button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.3);
    border: none;
    color: white;
    font-size: 1.8rem;
    padding: 1.2rem 0.8rem;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.lightbox-nav-tablet button:hover {
    background: rgba(0, 0, 0, 0.5);
}

.lightbox-nav-tablet button:first-child {
    left: 2rem;
}

.lightbox-nav-tablet button:last-child {
    right: 2rem;
}