/* Base Styles */
:root {
    --primary-color: #f8b195;
    --secondary-color: #f67280;
    --accent-color: #c06c84;
    --dark-color: #6c5b7b;
    --light-color: #f8f9fa;
    --text-color: #333;
    --text-light: #777;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
    overflow-y: auto;
}

/* Navigation */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    background-color: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--dark-color);
}

.nav-links ul {
    display: flex;
    list-style: none;
}

.nav-links ul li {
    margin-left: 2rem;
}

.nav-links ul li a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links ul li a:hover {
    color: var(--accent-color);
}

.navbar .fa {
    display: none;
}

/* Hero Section */
.hero {
    height: 100vh;
    background:linear-gradient(to bottom, rgba(255,180,162,.6), rgba(248,177,149,.6)), url('../images/hero-bg.png') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: black;
    margin-top: 0;
    z-index: 0;
    position: relative;
    overflow: hidden;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin: 1rem 0;
    color: black;
    font-family: 'Cinzel Decorative', 'Great Vibes', 'Allura', 'Segoe Script', cursive;
}

.motto {
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 2rem;
    color: var(--dark-color);
}

.logo-img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin-bottom: 1rem;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}
.instagram-btn {
  display: inline-block;
  padding: 15px 30px;
  font-size: 12px;
  font-weight: bold;
  color: white;
  text-decoration: none;
  border-radius: 50px;
  background: linear-gradient(45deg, var(--primary-color), var(--secondary-color), var(--accent-color));
  background-size: 400% 400%;
  transition: all 0.4s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.instagram-btn:hover {
  animation: gradientMove 3s ease infinite;
  box-shadow: 0 0 20px rgba(255, 105, 180, 0.6), 0 0 30px rgba(255, 105, 180, 0.4);
}

@keyframes gradientMove {
  0% {background-position: 0% 50%;}
  50% {background-position: 100% 50%;}
  100% {background-position: 0% 50%;}
}
/* Sections */
.section {
    padding: 5rem 10%;
}
.section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--dark-color);
    position: relative;
    padding-bottom: 1rem;
}

.section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background-color: var(--accent-color);
}

/* About Section */
.about-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
}

.about-text {
    padding: 2rem;
    flex: 1;
    min-width: 300px;
    font-size: 20px;
}

.about-text p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.about-image {
    flex: 1;
    min-width: 300px;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: 450px;
    border-radius: 50%;
    box-shadow: 0 15px 15px rgba(237, 108, 213, 0.2);
}

/* Gallery Section */
.gallery {
    background-color: #ffe5f6;
    overflow: hidden;
    padding: 5rem 0;
}

.gallery-carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin: 0 auto;
}

.gallery-track {
    display: flex;
    animation: scroll var(--carousel-duration, 60s) linear infinite;
    width: fit-content;
}

.gallery-track:hover {
    animation-play-state: paused;
}

.gallery-item {
    flex: 0 0 300px;
    margin: 0 15px;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

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

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

.overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.7));
    color: white;
    padding: 1rem;
    transform: translateY(100%);
    transition: transform 0.3s;
}

.gallery-item:hover .overlay {
    transform: translateY(0);
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

/* Contact Section */
.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 3rem;
    margin-top: 3rem;
}

.contact-info, .contact-form {
    flex: 1;
    min-width: 300px;
}

.contact-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--dark-color);
}

.contact-info p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
}

.contact-info i {
    margin-right: 1rem;
    color: var(--accent-color);
    font-size: 1.2rem;
    width: 25px;
    text-align: center;
}

.contact-info a {
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info a:hover {
    color: var(--accent-color);
}

.contact-form {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.consent {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-color);
}

.consent input[type="checkbox"] {
    margin-top: 0.15rem;
    accent-color: var(--accent-color);
}

.btn {
    display: inline-block;
    background-color: var(--accent-color);
    color: white;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s, transform 0.2s;
}

.btn:hover {
    background-color: var(--dark-color);
    transform: translateY(-2px);
}

input[name="_honey"] {
    display: none !important;
}

/* Footer */
footer {
    background-color: var(--dark-color);
    color: white;
    text-align: center;
    padding: 2rem 0;
    margin-top: 3rem;
}

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

.social-links {
    margin-top: 1rem;
}

.social-links a {
    color: white;
    font-size: 1.5rem;
    margin: 0 10px;
    transition: color 0.3s;
}

.social-links a:hover {
    color: var(--primary-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .navbar .fa {
        display: block;
        font-size: 1.5rem;
        cursor: pointer;
    }

    .nav-links {
        position: fixed;
        background: var(--dark-color);
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2000;
        transition: 1s;
    }

    .nav-links ul {
        display: block;
        padding: 30px;
    }

    .nav-links ul li {
        margin: 15px 0;
    }

    .nav-links ul li a {
        color: white;
    }

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

    .motto {
        font-size: 1.2rem;
    }

    .section {
        padding: 4rem 5%;
    }
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.about-content, .gallery, .contact-container {
    animation: fadeIn 1s ease-out;
}

/* Hero Sparkles */
.hero-sparkle-layer {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
}

.hero-sparkle {
    position: absolute;
    width: 8px;
    height: 8px;
    margin: -4px 0 0 -4px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.98) 0%, rgba(255, 246, 199, 0.9) 45%, rgba(255, 246, 199, 0) 72%);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.95), 0 0 18px rgba(255, 215, 138, 0.8);
    transform: translate3d(0, 0, 0) scale(0.6);
    animation: heroSparkleFade 680ms ease-out forwards;
    will-change: transform, opacity;
}

@keyframes heroSparkleFade {
    0% {
        opacity: 0;
        transform: translate3d(0, 0, 0) scale(0.4);
    }
    20% {
        opacity: 1;
        transform: translate3d(0, -2px, 0) scale(1);
    }
    100% {
        opacity: 0;
        transform: translate3d(var(--sparkle-drift-x, 0px), var(--sparkle-drift-y, -20px), 0) scale(0.2);
    }
}

@media (hover: none), (prefers-reduced-motion: reduce) {
    .hero-sparkle-layer {
        display: none;
    }
}



/* Explore Work Toggle */
.explore-work {
    background: linear-gradient(180deg, #ffe5f6 0%, #fff7fc 65%, #fff 100%);
    padding-top: 2.2rem;
}

.explore-work-wrap {
    max-width: 1120px;
    margin: 0 auto;
    text-align: center;
}

.explore-work-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    padding: 0.95rem 2rem;
    border: 0;
    border-radius: 999px;
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-transform: lowercase;
    letter-spacing: 0.04em;
    cursor: pointer;
    background: linear-gradient(120deg, #f67280, #c06c84, #c59de7, #f67280);
    background-size: 280% 280%;
    box-shadow: 0 0 0 rgba(246, 114, 128, 0.4), 0 0 18px rgba(246, 114, 128, 0.42), 0 12px 26px rgba(108, 91, 123, 0.25);
    animation: exploreBtnGradient 5.5s linear infinite, exploreBtnGlowScale 1.8s ease-in-out infinite;
}

.explore-work-btn::after {
    display: none;
}

.explore-work-btn:hover {
    color: #460232;
}

@keyframes exploreBtnGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes exploreBtnGlowScale {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(246, 114, 128, 0.4), 0 0 18px rgba(246, 114, 128, 0.42), 0 12px 26px rgba(108, 91, 123, 0.25);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 0 0 10px rgba(246, 114, 128, 0), 0 0 30px rgba(246, 114, 128, 0.7), 0 16px 30px rgba(108, 91, 123, 0.34);
    }
}

.explore-work-panel {
    margin-top: 1rem;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transform: translateY(-8px);
    transition: max-height 0.45s ease, opacity 0.35s ease, transform 0.35s ease;
}

.explore-work-panel.is-open {
    max-height: 2200px;
    opacity: 1;
    transform: translateY(0);
}

.explore-work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 1rem;
    padding-top: 1rem;
}

.explore-item {
    position: relative;
    border-radius: 14px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.35);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    padding: 10px;
    opacity: 0;
    transform: translateY(18px) scale(0.96);
    transition: transform 0.45s ease, opacity 0.45s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}

.explore-item.show {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.explore-item img,
.explore-item .explore-placeholder {
    width: 100%;
    height: 180px;
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.14);
}

.explore-item img {
    display: block;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.explore-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0.75rem;
    color: #6c5b7b;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    border: 1px dashed rgba(192, 108, 132, 0.55);
}

.explore-item:hover {
    border-color: rgba(255, 186, 217, 0.95);
    box-shadow: 0 0 0 2px rgba(255, 215, 236, 0.65), 0 0 22px rgba(255, 160, 205, 0.72), 0 14px 24px rgba(108, 91, 123, 0.28);
}

.explore-item:hover img {
    transform: scale(1.08);
}

@media (max-width: 768px) {
    .explore-work-btn {
        width: 100%;
    }

    .explore-work-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Swipe gallery carousel */
#galleryCarousel{
    background-color: #ffe5f6;
}

/* Hide carousel on mobile, show on desktop */
@media (max-width: 605px) {
    #galleryCarousel {
        display: none;
    }
    .explore-work {
        display: block;
    }
}

@media (min-width: 606px) {
    .explore-work {
        display: none;
    }
}
.containerc{
    position: relative;
    width: 90%;
    max-width: 1000px;
    height: 600px;
    margin: 0 auto;
    overflow: visible;
    border: 40px;
}

.containerc .slide .item{
    width: 200px;
    height: 200px;
    position: absolute;
    top: 80%;
    transform: translate(0, -50%);
    border-radius: 20px;
    box-shadow: 0 0 50px #f8f5f5;
    background-position: 50% 50%;
    background-size: cover;
    display: inline-block;
    transition: 0.5s;
}

.slide .item:nth-child(1),
.slide .item:nth-child(2){
    top: 0;
    left: 0;
    transform: translate(0, 0);
    border-radius: 0;
    width: 100%;
    height: 100%;
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: left center;
    border-radius: 40px;
    box-shadow: 0 10px 50px #505050;
}

.slide .item:nth-child(3){
    left: 50%;
}
.slide .item:nth-child(4){
    left: calc(50% + 220px);
}
.slide .item:nth-child(5){
    left: calc(50% + 440px);
}

/* here n = 0, 1, 2, 3,... */
.slide .item:nth-child(n + 6){
    left: calc(50% + 660px);
    opacity: 0;
}

.item .content{
    position: absolute;
    top: 24px;
    right: 32px;
    width: 320px;
    text-align: right;
    color: rgb(5, 5, 5);
    transform: none;
    display: none;
    font-family: Georgia, 'Times New Roman', Times, serif;
}

.slide .item:nth-child(2) .content{
    display: block;
}

.content .name{
    font-size: 40px;
    text-transform: lowercase;
    font-family: 'Great Vibes', 'Allura', 'Segoe Script', cursive;
    opacity: 0;
    animation: animate 1s ease-in-out 1 forwards;
    text-shadow: 0 0 50px rgb(250, 248, 248);
}
.content .des{
    margin-top: 10px;
    margin-bottom: 20px;
    opacity: 0;
    animation: animate 1s ease-in-out 0.3s 1 forwards;
    color: rgb(253, 253, 251);
    text-shadow: 0 0 50px rgb(13, 13, 13);
    font-size: 16px;
}

@keyframes animate {
    from{
        opacity: 0;
        transform: translate(0, 100px);
        filter: blur(33px);
    }

    to{
        opacity: 1;
        transform: translate(0);
        filter: blur(0);
    }
}
.buttonc{
    width: 100%;
    text-align: left;
    position: absolute;
    bottom: 20px;
    left: 30px;
}

.buttonc button{
    width: 50px;
    height: 35px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    margin: 0 5px;
    transition: 0.3s;
    background: linear-gradient(120deg, #f67280, #b45ce7, #f195ce, #f67280);
    background-size: 280% 280%;
    box-shadow: 0 0 0 rgba(246, 114, 128, 0.4), 0 0 18px rgba(246, 114, 128, 0.42), 0 12px 26px rgba(108, 91, 123, 0.25);
    animation: exploreBtnGradient 5.5s linear infinite, exploreBtnGlowScale 1.8s ease-in-out infinite;
    font-size: 16px;
}

.buttonc button:hover{
    color: white;
}

@keyframes exploreBtnGradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

@keyframes exploreBtnGlowScale {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 rgba(239, 232, 232, 0.4), 0 0 18px rgba(251, 214, 218, 0.42), 0 12px 26px rgba(108, 91, 123, 0.25);
    }
    50% {
        transform: scale(1.06);
        box-shadow: 0 0 0 10px rgba(246, 114, 128, 0), 0 0 30px rgba(246, 114, 128, 0.7), 0 16px 30px rgba(108, 91, 123, 0.34);
    }
}

/* Responsive Design - Below 605px */
/* @media (max-width: 605px) {
    .containerc {
        width: 95%;
        height: clamp(480px, 70vh, 600px);
        overflow: hidden;
        margin-left: auto;
        margin-right: auto;
    }

    .containerc .slide .item {
        width: clamp(120px, 20vw, 200px);
        height: clamp(120px, 20vw, 200px);
    }

    .slide .item:nth-child(3) {
        left: clamp(calc(50% - 120px), calc(50% - 15vw), calc(50% - 80px));
        width: clamp(90px, 15vw, 150px);
        height: clamp(90px, 15vw, 150px);
    }

    .slide .item:nth-child(4) {
        left: clamp(calc(50% + 10px), calc(50% + 8vw), calc(50% + 50px));
        width: clamp(85px, 14vw, 140px);
        height: clamp(85px, 14vw, 140px);
    }

    .slide .item:nth-child(5) {
        left: clamp(calc(50% + 110px), calc(50% + 28vw), calc(50% + 170px));
        width: clamp(80px, 13vw, 130px);
        height: clamp(80px, 13vw, 130px);
    }

    .slide .item:nth-child(n + 6) {
        left: clamp(calc(50% + 200px), calc(50% + 45vw), calc(50% + 270px));
        width: clamp(75px, 12vw, 120px);
        height: clamp(75px, 12vw, 120px);
        opacity: 0.7;
        max-width: calc(100vw - 30px);
    }

    .item .content {
        top: clamp(8px, 2vh, 16px);
        right: clamp(6px, 1.5vw, 12px);
        left: auto;
        width: clamp(140px, 65vw, 240px);
        max-width: calc(100vw - 40px);
    }

    .content .name {
        font-size: clamp(16px, 2.8vw, 26px);
    }

    .content .des {
        font-size: clamp(9px, 1.2vw, 12px);
        margin-top: clamp(2px, 0.8vw, 5px);
        margin-bottom: 0;
    }

    .buttonc {
        bottom: clamp(10px, 1.5vw, 18px);
        left: clamp(10px, 2vw, 25px);
    }

    .buttonc button {
        width: clamp(40px, 8vw, 48px);
        height: clamp(28px, 5vw, 34px);
        margin: 0 clamp(3px, 0.8vw, 5px);
        font-size: clamp(11px, 1.5vw, 15px);
    }
} */

/* Responsive Design for Mobile Phones (480px and below) */
/* @media (max-width: 480px) {
    .section {
        padding: 3rem 5%;
    }

    #galleryCarousel .section h2 {
        font-size: clamp(1.8rem, 5vw, 2.5rem);
        margin-bottom: 1.5rem;
    }

    .containerc {
        width: 100%;
        height: clamp(420px, 72vh, 500px);
        padding: 0;
        margin: 0;
        overflow: hidden;
    }

    .containerc .slide .item {
        width: clamp(100px, 20vw, 160px);
        height: clamp(100px, 20vw, 160px);
    }

    .slide .item:nth-child(3) {
        left: clamp(calc(50% - 130px), calc(50% - 20vw), calc(50% - 100px));
        width: clamp(75px, 12vw, 120px);
        height: clamp(75px, 12vw, 120px);
    }

    .slide .item:nth-child(4) {
        left: clamp(calc(50% - 30px), calc(50% + 2vw), calc(50% - 10px));
        width: clamp(70px, 11vw, 110px);
        height: clamp(70px, 11vw, 110px);
    }

    .slide .item:nth-child(5) {
        left: clamp(calc(50% + 50px), calc(50% + 20vw), calc(50% + 80px));
        width: clamp(65px, 10vw, 100px);
        height: clamp(65px, 10vw, 100px);
    }

    .slide .item:nth-child(n + 6) {
        left: clamp(calc(50% + 130px), calc(50% + 38vw), calc(50% + 160px));
        width: clamp(60px, 9vw, 90px);
        height: clamp(60px, 9vw, 90px);
        opacity: 0.6;
        max-width: calc(100vw - 20px);
    }

    .item .content {
        top: clamp(10px, 2.5vh, 18px);
        right: clamp(6px, 1.5vw, 12px);
        left: auto;
        width: clamp(130px, 60vw, 200px);
        max-width: calc(100vw - 35px);
    }

    .content .name {
        font-size: clamp(17px, 3.2vw, 24px);
    }

    .content .des {
        font-size: clamp(10px, 1.3vw, 13px);
        margin-top: clamp(3px, 0.8vw, 6px);
        margin-bottom: 0;
    }

    .buttonc {
        bottom: clamp(8px, 1.5vw, 14px);
        left: clamp(8px, 1.5vw, 14px);
    }

    .buttonc button {
        width: clamp(35px, 7vw, 44px);
        height: clamp(24px, 4.5vw, 31px);
        margin: 0 clamp(2px, 0.7vw, 4px);
        font-size: clamp(10px, 1.3vw, 13px);
    }
} */
