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

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    padding-top: 80px; /* Space for fixed header */
}

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

/* Luxury Header */
.luxury-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 20px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    color: #333;
    margin: 0;
}

.main-nav ul {
    display: flex;
    list-style: none;
    gap: 35px;
}

.main-nav a {
    text-decoration: none;
    color: #333;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    transition: color 0.3s ease;
    position: relative;
}

.main-nav a:hover {
    color: #d4648a;
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: #d4648a;
    transition: width 0.3s ease;
}

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

.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background-color: #333;
    transition: 0.3s;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #333;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

h1 {
    font-size: 3.5rem;
    letter-spacing: 1px;
}

h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
    margin-bottom: 30px;
}

h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #d4648a;
}

h3 {
    font-size: 1.8rem;
    font-weight: 500;
}

/* Hero Section */
.hero {
    height: 90vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4));
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.hero-overlay {
    position: relative;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-content {
    text-align: center;
    max-width: 800px;
    padding: 20px;
    color: white;
}

.hero-text h1 {
    color: white;
    font-size: 4rem;
    margin-bottom: 10px;
    font-weight: 500;
    letter-spacing: 2px;
}

.hero-text h2 {
    color: #e6e6e6;
    font-weight: 400;
    margin-bottom: 20px;
    font-size: 1.8rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.hero-text p {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

.description {
    margin: 25px 0;
    font-size: 1.1rem;
    line-height: 1.8;
    font-weight: 300;
}

.description p {
    max-width: 700px;
    margin: 0 auto;
    color: white;
    font-family: 'Montserrat', sans-serif;
}

.brand-highlight {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 20px;
}

.brand-tag {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-weight: 400;
    font-size: 1rem; /* Slightly bigger */
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    font-family: 'Montserrat', sans-serif;
}

/* Style for the brand tag link to remove underline and maintain appearance */
.brand-highlight a {
    text-decoration: none;
}

.brand-highlight a:link,
.brand-highlight a:visited,
.brand-highlight a:hover,
.brand-highlight a:active {
    text-decoration: none;
    color: inherit; /* Maintain the white color from .brand-tag */
    outline: none;
}

/* Cute decorative elements */
.heart {
    position: absolute;
    font-size: 1.5rem;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.heart:nth-child(1) {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.heart:nth-child(2) {
    top: 25%;
    right: 12%;
    animation-delay: 1s;
}

.heart:nth-child(3) {
    bottom: 20%;
    left: 15%;
    animation-delay: 2s;
}

.heart:nth-child(4) {
    bottom: 30%;
    right: 18%;
    animation-delay: 3s;
}

.hearts {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
    50% {
        transform: translateY(-20px) rotate(10deg);
        opacity: 1;
    }
    100% {
        transform: translateY(0) rotate(0deg);
        opacity: 0.7;
    }
}

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

.about h2 {
    text-align: center;
    margin-bottom: 40px;
    font-weight: 500;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    color: #555;
    line-height: 1.8;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
}

/* Portfolio Section */
.portfolio {
    padding: 100px 0;
    background-color: #fff;
}

.portfolio h2 {
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 35px;
    margin-top: 30px;
}

.gallery-item {
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    width: 100%;
    padding-top: 100%; /* Square aspect ratio for minimal aesthetic */
    background: #fff;
    border: 1px solid #f0f0f0;
}

.gallery-item img, .gallery-item video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-item img.original-ratio {
    object-fit: cover;
}

.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

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

.video-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: #000;
}

/* Brand Showcase */
.brand-showcase {
    padding: 80px 0;
    background-color: #fff;
}

.brand-showcase h2 {
    text-align: center;
    margin-bottom: 40px;
}

.brand-info {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.brand-info p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
}

.brand-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.brand-images {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 15px;
    margin-top: 20px;
    position: relative;
}

.brand-images div {
    position: relative;
    width: 100%;
    padding-top: 177.77%; /* 9:16 aspect ratio (16/9 = 1.777 * 100) */
}

.brand-images img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover to fill without black gaps */
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.brand-images img:hover {
    transform: scale(1.05);
}

/* Stats Section */
.stats {
    padding: 100px 0;
    background-color: #fff;
}

.stats h2 {
    text-align: center;
    margin-bottom: 60px;
    font-weight: 500;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    background: transparent;
    padding: 30px;
    text-align: center;
    transition: transform 0.3s ease;
    border: none;
    position: relative;
}

.stat-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background-color: #d4648a;
    transition: width 0.3s ease;
}

.stat-card:hover::before {
    width: 100%;
}

.stat-card:hover {
    transform: translateY(-5px);
}

.stat-card h3 {
    font-size: 2.8rem;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

.stat-card p {
    color: #666;
    font-weight: 400;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

/* Reels Section */
.reels {
    padding: 80px 0;
    background-color: #fff;
}

.reels h2 {
    text-align: center;
    margin-bottom: 40px;
}

.reel-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 25px;
}

.reel-item {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
    width: 100%;
    padding-top: 177.77%; /* 9:16 aspect ratio (16/9 = 1.777 * 100) */
    background: #000;
}

.reel-item video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Cover to fill without black gaps while maintaining aspect ratio */
    display: block;
}

/* Instagram Post Section */
.instagram-post-section {
    padding: 60px 0;
    background: #fff;
    width: 100%;
    overflow-x: hidden;
}

.dual-instagram-posts, .five-instagram-posts {
    display: flex;
    gap: 30px;
    flex-wrap: nowrap;
    padding: 20px 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    box-sizing: border-box;
    min-width: min-content;
    overflow-x: hidden;
    position: relative;
}

.dual-instagram-posts::-webkit-scrollbar, .five-instagram-posts::-webkit-scrollbar {
    display: none;
}

.five-instagram-posts {
    gap: 30px;
    position: relative;
    align-items: flex-start;
    justify-content: flex-start;
}

.sushi-controls {
    position: absolute;
    top: -30px;
    width: 100%;
    text-align: center;
    z-index: 100;
}

.controls-text {
    background: rgba(0,0,0,0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    display: inline-block;
}

.instagram-post {
    background: #fff;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    min-width: 300px;
    max-width: 320px;
    border: 1px solid #f0f0f0;
    flex: 0 0 auto;
    scroll-snap-align: start;
}

.five-instagram-posts::-webkit-scrollbar {
    display: none;
}

/* Container adjustment for full width display */
.instagram-post-section .container {
    width: 100% !important;
    max-width: none !important;
    padding: 0 20px;
    overflow-x: visible;
    min-width: calc((320px + 15px) * 7);
}

/* Infinite Scrolling Animation will be handled by JavaScript */


.post-header {
    display: flex;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.profile-pic {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    overflow: hidden;
    margin-right: 12px;
    background: #f8f8f8;
    border: 1px solid #f0f0f0;
}

.profile-pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.username {
    font-weight: 400;
    color: #333;
    font-size: 1rem;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

/* Carousel container */
.carousel-container {
    position: relative;
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    background: #fff;
}

.carousel-slides {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
}

.carousel-slide {
    min-width: 100%;
    height: 100%;
    position: relative;
}

.carousel-slide img, .carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Carousel navigation */
.carousel-nav {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 8px;
    z-index: 10;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: background 0.3s ease;
}

.carousel-dot.active {
    background: #333;
}

/* Instagram-like interaction */
.carousel-container {
    cursor: pointer;
}

.carousel-left {
    position: absolute;
    left: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 2;
}

.carousel-right {
    position: absolute;
    right: 0;
    top: 0;
    width: 50%;
    height: 100%;
    z-index: 2;
}

/* Post footer */
.post-actions {
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
}

.action-icons {
    display: flex;
    gap: 20px;
}

/* Carousel Navigation Icons */
.carousel-nav-icons {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateY(-50%);
    z-index: 10;
    pointer-events: none;
}

.nav-arrow {
    background: rgba(255, 255, 255, 0.8);
    border: 1px solid #f0f0f0;
    color: #333;
    font-size: 20px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    backdrop-filter: blur(5px);
    margin: 0 12px;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: #333;
    color: white;
    border-color: #333;
}

.nav-prev {
    align-self: flex-start;
}

.nav-next {
    align-self: flex-end;
}

.action-icon {
    font-size: 20px;
    cursor: pointer;
}

.save-icon {
    margin-left: auto;
}

.post-caption {
    padding: 0 20px 15px;
    font-size: 0.9rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
}

.caption-username {
    font-weight: 600;
    margin-right: 4px;
    color: #333;
}

.post-comments {
    padding: 0 20px 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 0.9rem;
    color: #666;
    font-family: 'Montserrat', sans-serif;
}

.time-stamp {
    padding: 0 20px 20px;
    color: #999;
    font-size: 0.8rem;
    text-transform: uppercase;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}

/* Testimonials Section */
.testimonials {
    padding: 100px 0;
    background-color: #fff;
}

.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: transparent;
    padding: 40px 30px;
    border-radius: 0;
    box-shadow: none;
    position: relative;
    border: none;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    border-bottom: 1px solid #f0f0f0;
}

.testimonial-card::before {
    content: """;
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 3rem;
    color: #d4648a;
    font-family: serif;
    line-height: 1;
    opacity: 0.3;
}

.testimonial-card p {
    font-style: italic;
    color: #555;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    font-size: 1.1rem;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.8;
    font-weight: 300;
}

.testimonial-card h4 {
    color: #333;
    font-weight: 400;
    text-align: center;
    font-style: normal;
    font-family: 'Cormorant Garamond', serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background-color: #fff;
    text-align: center;
}

.contact h2 {
    margin-bottom: 20px;
    font-weight: 500;
}

.contact p {
    max-width: 600px;
    margin: 0 auto 40px;
    font-size: 1.1rem;
    color: #555;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    line-height: 1.8;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.contact-btn {
    display: inline-block;
    background: transparent;
    color: #333;
    padding: 15px 40px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 400;
    transition: all 0.3s ease;
    border: 1px solid #333;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.contact-btn:hover {
    background: #333;
    color: white;
    transform: translateY(-3px);
}

/* Interactive Section */
.interactive {
    padding: 80px 0;
    background: linear-gradient(135deg, #f9f0f5 0%, #fdf2f8 100%);
}

.interactive h2 {
    text-align: center;
    margin-bottom: 40px;
}

.interactive-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.interactive-card {
    background: white;
    padding: 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.interactive-card:hover {
    transform: translateY(-10px);
}

.interactive-card h3 {
    color: #d4648a;
    margin-bottom: 15px;
}

.interactive-card p {
    color: #666;
    margin-bottom: 20px;
}

/* Footer */
footer {
    background: #fff;
    color: #333;
    padding: 60px 0 30px;
    text-align: center;
    border-top: 1px solid #f0f0f0;
}

footer p {
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: #666;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.social-links a {
    color: #333;
    text-decoration: none;
    font-weight: 400;
    transition: color 0.3s ease;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.social-links a:hover {
    color: #d4648a;
}

/* Responsive Design */
@media (max-width: 992px) {
    .main-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .hero-text h1 {
        font-size: 3rem;
    }

    .hero-text h2 {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 3rem;
    }

    h2 {
        font-size: 2rem;
    }

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

@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 1.8rem;
    }

    .hero {
        height: 80vh;
    }

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

    .hero-text h2 {
        font-size: 1.3rem;
        letter-spacing: 2px;
    }

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

    .contact-info {
        flex-direction: column;
        align-items: center;
    }

    .brand-images {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .instagram-post {
        min-width: 280px;
    }

    .five-instagram-posts {
        gap: 20px;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    h2 {
        font-size: 1.5rem;
    }

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

    .contact-btn {
        width: 80%;
        margin-bottom: 10px;
    }

    body {
        padding-top: 70px;
    }

    .luxury-header {
        padding: 15px 0;
    }

    .hero-text h1 {
        font-size: 2rem;
    }

    .hero-text h2 {
        font-size: 1.1rem;
        letter-spacing: 1px;
    }
}


