@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Poppins:wght@400;500;600&display=swap');

:root {
    --primary-black: #0a0a0a;
    --secondary-black: #141414;
    --gold: #c5a059;
    --gold-hover: #e5c07b;
    --white: #ffffff;
    --gray: #888888;
    --glass: rgba(255, 255, 255, 0.05);
    --transition: all 0.3s ease;
    --contact-btn-padding: 16px 36px;
    --contact-btn-min-width: 220px;
    --contact-btn-font-size: 1.05rem;
}

html, body {
  overflow-x: hidden;   /* prevent horizontal scroll */
}


* {
    margin: 0;
    padding: 0px;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

nav{
    padding: 0 40px;

}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--primary-black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    letter-spacing: 2px;
    
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.gold-text {
    color: var(--gold);
}

.section-title {
    font-size: 2.5rem;
    margin-bottom: 40px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.section-title.center {
    text-align: center;
}

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 15px 35px;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-gold {
    background-color: var(--gold);
    color: var(--primary-black);
}

.btn-gold:hover {
    background-color: var(--gold-hover);
    transform: translateY(-3px);
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--white);
    color: var(--white);
}

.btn-outline:hover {
    background-color: var(--white);
    color: var(--primary-black);
}

.btn-block {
    display: block;
    width: 100%;
}


header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1100;
    transition: var(--transition);
    padding: 20px 0;
    background-color: var(--primary-black);
}

header.sticky {
    background-color: var(--primary-black);
    padding: 20px 0;
    border-bottom: 1px solid rgba(201, 163, 92, 0.2);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    min-width: 180px;
    z-index: 1100;
}

.logo img {
    max-height: 80px;
    width: auto;
    display: block;
}

.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition);
    font-weight:bolder;
}

.nav-links a:hover {
    color: var(--gold-hover);
    text-decoration: underline var(--gold-hover)  2px;

}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 2px;
    background-color: var(--white);
    margin: 5px;
    transition: var(--transition);
}


.hero {
    min-height: 130vh;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: visible;
    padding-top: 120px;
}

.hero-content,
.hero-carousel-wrapper {
    position: relative;
    z-index: 2;
}

.video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}


.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.8) 100%);
}

.hero-content {
    padding: 0 10px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 15px;
}

.hero-content p {
    font-size: 1.2rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.hero-btns .btn {
    margin: 10px;
}

.hero-carousel-wrapper {
    width: 100%;
    max-width: 490px;
    margin: 60px auto 36px;
    perspective: 1400px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-carousel {
  width: 100%;
  max-width: 470px;
  height: 700px;          /* fixed height for consistency */
  aspect-ratio: 4 / 5;    /* keeps portrait ratio */
  position: relative;
  transform-style: preserve-3d;
}

.hero-carousel-track {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 50%;
  width: 100%;
  height: 100%;
  border-radius: 24px;
  overflow: hidden;
  transform: translateX(-50%);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
  pointer-events: auto;         /* lock to carousel width */
  max-width: 100%;      /* prevent overflow */
  box-sizing: border-box;

}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;       /* fills the box consistently */
  display: block;
}

.carousel-slide.current {
    transform: translateX(-50%) translateZ(0) scale(1);
    filter: blur(0) brightness(1);
    opacity: 1;
    z-index: 5;
}

.carousel-slide.prev,
.carousel-slide.next {
    transform: translateX(-50%) translateZ(-220px) scale(0.84);
    filter: blur(4px) brightness(0.9);
    opacity: 1;
    z-index: 4;
}

.carousel-slide.prev {
    transform: translateX(-130%) translateZ(-220px) scale(0.84);
}

.carousel-slide.next {
    transform: translateX(30%) translateZ(-220px) scale(0.84);
}

.carousel-slide.off {
    transform: translateX(-50%) translateZ(-500px) scale(0.55);
    opacity: 0;
    z-index: 1;
}

.hero-carousel-nav {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 20;
}

.carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    color: var(--white);
    font-size: 1.6rem;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    pointer-events: auto;
    z-index: 30;
}

.carousel-arrow:hover {
    background: rgba(255, 255, 255, 0.32);
}

.carousel-arrow.left {
    left: 0px;
}

.carousel-arrow.right {
    right: 0px;
}

@media (max-width: 900px) {
  .hero-carousel {
    max-width: 340px;
    height: 520px;        /* keep consistent smaller size */
  }

    .hero-carousel {
        max-width: 340px;
        height: 520px;
    }

    .carousel-slide {
        width: 280px;
    }

    .carousel-slide.prev,
    .carousel-slide.next {
        transform: translateX(-120%) translateZ(-200px) scale(0.8);
    }

    .carousel-slide.next {
        transform: translateX(20%) translateZ(-200px) scale(0.8);
    }

    .carousel-slide.off {
        display: none;
    }

}

.scroll-indicator {
  position: relative;
  margin-top: 20px;     
  margin-bottom: 20px;
  z-index: 50;         
  pointer-events: none; 
}



.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid var(--white);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    width: 4px;
    height: 8px;
    background: var(--gold);
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: 8px;
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}


.about {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 30px 0;
    position: relative;
}

.about .section-title {
    text-align: center;
    margin: 0 auto 40px;
    max-width: 900px;
}

.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 760px);
    gap: 40px;
    align-items: center;
    justify-content: center;
    justify-items: center;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
}

.about-media {
    width: 100%;
    display: flex;
    justify-content: center;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  max-width: 860px;
  margin: 0 auto;
}

.video-grid .about-video {
  width: 100%;
  max-width: none;
  height: auto;
  aspect-ratio: 9 / 16 !important; /* portrait: narrow and tall */
  object-fit: cover;
}

.post-row {
  padding-top: 20px;
  display: grid;
  grid-template-columns: 1fr;   /* single column → stacked */
  gap: 16px;
  max-width: 800px;             /* reduce overall width (80% of 1000px) */
  margin: 0 auto;
}

.about-image {
  width: 80%;                   /* shrink each image to 80% of its container */
  max-width: 400px;             /* 80% of 500px */
  height: auto;                 /* keep natural proportions */
  object-fit: contain;          /* show full image */
  display: block;
  margin: 0 auto;               /* center the smaller image */
}







.portrait-video {
  max-width: none;
  aspect-ratio: 9 / 16;
}

.about-video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 18px;
  border: 1px solid rgba(197, 160, 89, 0.35);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35);
  background: #111;
  display: block;
}

/* Optional: one video per row on smaller phones */
@media (max-width: 480px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
}

.about-text {
    text-align: center;
    max-width: 600px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
}


/* LAPTOP / DESKTOP: full portrait images, no cropping */
.portfolio-row {
  padding-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1000px;
  margin: 0 auto;
}

.posing {
  width: 100%;
}

.posing img {
  position: static;  /* remove absolute */
  display: block;
  width: 100%;
  height: auto;      /* keeps original portrait proportion */
  object-fit: contain;
  border-radius: 0;
}

/* PHONE ONLY: square Instagram-style tiles */
/* Phone */
@media (max-width: 600px) {
  .portfolio-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    padding: 0;
  }

  .posing {
    aspect-ratio: 4 / 5; /* portrait posts: less harsh cropping */
    overflow: hidden;
    background: #fff;
  }

  .posing img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 45%; /* prioritizes the person lower in photo */
  }
}

.about-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}


.feature {
    font-weight: 600;
}


.services {
    padding: 100px 0;
    background-color: var(--secondary-black);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background: var(--glass);
    padding: 40px;
    text-align: center;
    border: 1px solid rgba(255,255,255,0.05);
    transition: var(--transition);
}

.service-card:hover {
    border-color: var(--gold);
    transform: translateY(-10px);
}

.service-icon {
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.service-card h3 {
    margin-bottom: 15px;
}

.service-card p {
    font-size: 0.9rem;
    color: var(--gray);
}

/* --- Portfolio --- */
.portfolio {
    padding: 100px 0;
}

.filter-buttons {
    text-align: center;
    margin-bottom: 40px;
}

.filter-btn {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--white);
    padding: 8px 25px;
    margin: 5px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--gold);
    color: var(--primary-black);
}

.portfolio-grid {
    display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 20px;
        width: 100%;
    }

    .portfolio-item {
        position: relative;
        width: 100%;
        padding-top: 100%;
        overflow: hidden;
        cursor: pointer;
        border-radius: 12px;
        background: #111;
    }

    .portfolio-item img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.5s ease;
        width: 100%;
        max-width: 100%;
    }
    



.video-item {
    background: #000;
}

.video-play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 70px;
    height: 70px;
    background: rgba(0, 0, 0, 0.65);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 1.8rem;
    z-index: 2;
}

.portfolio-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(197, 160, 89, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: var(--transition);
}

.portfolio-overlay i {
    font-size: 2rem;
    color: var(--primary-black);
}

.portfolio-item:hover img {
    transform: scale(1.1);
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
}




.contact {
    padding: 20vh 0;
    position: relative;
    overflow: hidden;
}


.contact::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('src/camera3.jpeg');
    background-size: cover;
    background-position: center;
    opacity: 0.12;
    filter: blur(1px) saturate(0.8);
    z-index: 0;
}

.contact > .container {
    position: relative;
    z-index: 1;
}

.contact-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.contact-info {
    width: 100%;
    max-width: 800px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px;
}

.contact-info h3 {
    margin-bottom: 10px;
    font-size: 1.8rem;
    width: 100%;
    text-align: center;
}

.contact-info p {
    color: var(--gold);
    font-size: 1.5rem;
    margin: 0;
    padding: auto;
}

.contact-line {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: var(--white);
}

.contact-line i {
    min-width: 24px;
    text-align: center;
}

.contact-info i {
    margin-right: 0;
    padding-right: 0;
}

.contact-btns {
    margin-top: 10px;
    display: flex;
    justify-content: center;
    gap: 70px;
    flex-wrap: wrap;
}

.contact-btns a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: var(--gold);
    outline: var(--gold) 2px solid;
    padding: var(--contact-btn-padding);
    text-decoration: none;
    border-radius: 8px;
    margin: 0;
    font-weight: 600;
    font-size: var(--contact-btn-font-size);
    min-height: 56px;
    min-width: var(--contact-btn-min-width);
}

.contact-btns a i {
    font-size: 1.25rem;
    line-height: 1;
}

.whatsapp-btn { background-color: #000000 }
.facebook-btn { background-color: #000000 }
.gmail-btn { background-color: #000000 }

.contact-btns a:hover {
    background-color:var(--gold-hover); 
    color: white;
    transform: scale(1.05);
    outline-color: none;
    transform: translateY(-3px);
}

/* --- Footer --- */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--glass);
    text-align: center;
}

.footer-logo {
    color: var(--gold);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.footer-content p {
    font-size: 0.8rem;
    color: var(--gray);
}

/* --- Lightbox --- */
.lightbox {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.95);
    justify-content: center;
    align-items: center;
}

.lightbox-content {
    max-width: 85%;
    max-height: 85%;
    border: 2px solid var(--gold);
    display: none;
}

.lightbox-content.active {
    display: block;
}

#lightbox-video {
    width: 100%;
    max-width: 85%;
    max-height: 85%;
    background: #000;
}

.close-lightbox {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
}

/* --- Animations --- */
.fade-up {
    animation: fadeUp 1s ease forwards;
}

.fade-up-delay {
    opacity: 0;
    animation: fadeUp 1s ease 0.5s forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* --- Responsive --- */
@media (max-width: 968px) {
    header {
        padding: 14px 0;
    }

    .nav-links {
        position: fixed;
        right: 0;
        top: 72px;
        height: calc(100vh - 72px);
        background-color: var(--primary-black);
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 80%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        padding-top: 25px;
        z-index: 999;
        border-top: 1px solid rgba(197, 160, 89, 0.2);
    }

    .nav-links li {
        margin: 16px 0;
    }

    .burger {
        display: block;
        z-index: 1001;
    }

    .nav-active {
        transform: translateX(0%);
    }

    .hero {
        /* Reduced top padding so title sits closer to header on mobile */
        padding-top: 80px;
        min-height: calc(100vh - 80px);
    }

    .hero-content {
        padding: 10px 16px 36px;
        max-width: 92%;
        margin: 0 auto;
    }

    .hero-content h1 {
        font-size: 2.4rem;
        line-height: 1.08;
        margin-bottom: 18px;
    }

    .hero-content p {
        font-size: 1rem;
        letter-spacing: 2.5px;
        margin-bottom: 22px;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 14px;
        align-items: center;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 320px;
    }

    .about-grid, .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .about-video {
        width: 100%;
    }
}


.toggle .line1 { transform: rotate(-45deg) translate(-5px, 6px); }
.toggle .line2 { opacity: 0; }
.toggle .line3 { transform: rotate(45deg) translate(-5px, -6px); }

@media (max-width: 768px) {
    .logo {
        min-width: 100px;
    }

    .logo img {
        max-height: 38px;
        opacity: 0.95;
    }
}
