/* ──────────────────────────────────────────────
   RESET & BASE
   ────────────────────────────────────────────── */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #fef6f9;
    color: #4a2c3a;
    line-height: 1.6;
}

::selection {
    background: #f8a5b8;
    color: #fff;
}

/* ──────────────────────────────────────────────
   SCROLLBAR
   ────────────────────────────────────────────── */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: #ffe5ec;
}
::-webkit-scrollbar-thumb {
    background: #f8a5b8;
    border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
    background: #f27a9a;
}

/* ──────────────────────────────────────────────
   CONTAINER
   ────────────────────────────────────────────── */
.container {
    padding: 10px 10%;
}

/* ──────────────────────────────────────────────
   BUTTONS
   ────────────────────────────────────────────── */
.btn {
    display: inline-block;
    padding: 14px 40px;
    background: #f27a9a;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 6px 20px rgba(242, 122, 154, 0.35);
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
}
.btn:hover {
    background: #e05a7e;
    transform: translateY(-3px);
    box-shadow: 0 10px 28px rgba(242, 122, 154, 0.45);
}
.btn.btn2 {
    background: transparent;
    color: #f27a9a;
    border: 2px solid #f27a9a;
    box-shadow: none;
}
.btn.btn2:hover {
    background: #f27a9a;
    color: #fff;
}

/* ──────────────────────────────────────────────
   HEADER / HERO
   ────────────────────────────────────────────── */
#header {
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #fff0f5 0%, #ffe5ec 40%, #ffd9e4 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

#header::before {
    content: '✦';
    position: absolute;
    top: 12%;
    left: 6%;
    font-size: 4rem;
    color: rgba(242, 122, 154, 0.15);
    transform: rotate(-10deg);
}
#header::after {
    content: '♥';
    position: absolute;
    bottom: 15%;
    right: 8%;
    font-size: 5rem;
    color: rgba(242, 122, 154, 0.12);
    transform: rotate(12deg);
}

.hero-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}
.hero-decoration span {
    position: absolute;
    font-size: 2rem;
    color: rgba(242, 122, 154, 0.10);
    font-weight: 300;
}
.hero-decoration span:nth-child(1) {
    top: 20%;
    left: 20%;
    font-size: 3rem;
}
.hero-decoration span:nth-child(2) {
    bottom: 25%;
    right: 22%;
    font-size: 2.8rem;
}
.hero-decoration span:nth-child(3) {
    top: 55%;
    left: 5%;
    font-size: 2.2rem;
}

/* ─── Navigation ─── */
nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 18px 10%;
    background: rgba(254, 246, 249, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    box-shadow: 0 2px 30px rgba(242, 122, 154, 0.08);
    transition: 0.3s ease;
}

.nav-logo a {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #4a2c3a;
    text-decoration: none;
    letter-spacing: 0.5px;
}
.nav-logo a span {
    color: #f27a9a;
    font-size: 32px;
}

nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}
nav ul li a {
    color: #4a2c3a;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 50px;
    transition: 0.3s ease;
    position: relative;
}
nav ul li a:hover {
    background: #f8a5b8;
    color: #fff;
}
nav ul li a::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 4px;
    width: 0;
    height: 3px;
    background: #f27a9a;
    border-radius: 10px;
    transition: 0.3s ease;
    transform: translateX(-50%);
}
nav ul li a:hover::after {
    width: 60%;
}

.menu-toggle {
    display: none;
    font-size: 26px;
    color: #4a2c3a;
    cursor: pointer;
    background: none;
    border: none;
}

/* ─── Header Text ─── */
.header-text {
    text-align: center;
    max-width: 780px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}
.header-text .greeting {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 400;
    color: #b06f86;
    letter-spacing: 4px;
    margin-bottom: 10px;
}
.header-text h1 {
    font-family: 'Playfair Display', serif;
    font-size: 68px;
    font-weight: 700;
    color: #4a2c3a;
    line-height: 1.2;
    margin-top: 8px;
}
.header-text h1 span {
    color: #f27a9a;
    position: relative;
}
.header-text h1 span::after {
    content: '✧';
    font-size: 28px;
    color: #f8a5b8;
    position: absolute;
    top: -10px;
    right: -32px;
}
.header-text .sub-headline {
    font-size: 20px;
    font-weight: 300;
    color: #7a5b6b;
    margin: 18px 0 32px;
    letter-spacing: 1px;
}
.header-text .sub-headline i {
    margin: 0 8px;
}

/* ──────────────────────────────────────────────
   ABOUT
   ────────────────────────────────────────────── */
#about {
    padding: 80px 0;
    background: #fff;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    align-items: center;
}

.about-col-1 {
    flex-basis: 35%;
    min-width: 250px;
}
.about-col-1 img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 12px 40px rgba(242, 122, 154, 0.18);
    transition: 0.4s ease;
    display: block;
}
.about-col-1 img:hover {
    transform: scale(1.02);
    box-shadow: 0 16px 56px rgba(242, 122, 154, 0.28);
}

.about-col-2 {
    flex-basis: 55%;
    flex: 1;
}

.sub-title {
    font-family: 'Playfair Display', serif;
    font-size: 44px;
    font-weight: 700;
    color: #4a2c3a;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}
.sub-title .heart-float {
    font-size: 32px;
    color: #f27a9a;
    display: inline-block;
    animation: floatHeart 2.5s ease-in-out infinite;
}

@keyframes floatHeart {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-8px) scale(1.1);
    }
}

.about-col-2 p {
    font-size: 17px;
    color: #5a3f4d;
    margin-bottom: 20px;
    line-height: 1.8;
}

/* ──────────────────────────────────────────────
   PORTFOLIO
   ────────────────────────────────────────────── */
#portfolio {
    padding: 80px 0;
    background: #fef6f9;
}

.work-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.work {
    border-radius: 15px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 8px 28px rgba(242, 122, 154, 0.12);
    transition: 0.4s ease;
    background: #fff;
}
.work:hover {
    transform: translateY(-10px);
    box-shadow: 0 16px 48px rgba(242, 122, 154, 0.22);
}
.work img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: 0.4s ease;
}
.work:hover img {
    transform: scale(1.04);
}

.layer {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    background: linear-gradient(to top, rgba(242, 122, 154, 0.92), rgba(248, 165, 184, 0.75));
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    text-align: center;
    color: #fff;
    transition: 0.5s ease;
    overflow: hidden;
}
.work:hover .layer {
    height: 100%;
}
.layer h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}
.layer p {
    font-size: 15px;
    font-weight: 300;
    max-width: 260px;
    margin-bottom: 16px;
    opacity: 0.9;
}
.layer a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #fff;
    border-radius: 50%;
    color: #f27a9a;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.layer a:hover {
    background: #4a2c3a;
    color: #fff;
    transform: rotate(8deg) scale(1.06);
}

#portfolio .btn {
    margin-top: 44px;
}

/* ──────────────────────────────────────────────
   CONTACT
   ────────────────────────────────────────────── */
#contact {
    padding: 80px 0;
    background: #fff;
}

.contact-left {
    flex-basis: 40%;
    min-width: 250px;
}
.contact-left p {
    font-size: 17px;
    color: #5a3f4d;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 14px;
}
.contact-left p i {
    color: #f27a9a;
    font-size: 22px;
    width: 30px;
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 14px;
    margin: 24px 0 30px;
    flex-wrap: wrap;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: #ffe5ec;
    border-radius: 50%;
    color: #4a2c3a;
    font-size: 20px;
    text-decoration: none;
    transition: 0.3s ease;
}
.social-icons a:hover {
    background: #f27a9a;
    color: #fff;
    transform: translateY(-4px) scale(1.04);
    box-shadow: 0 8px 24px rgba(242, 122, 154, 0.30);
}

.contact-right {
    flex-basis: 50%;
    flex: 1;
}
.contact-right form {
    width: 100%;
}
.contact-right form input,
.contact-right form textarea {
    width: 100%;
    padding: 16px 20px;
    margin-bottom: 18px;
    border: 2px solid #f0d6df;
    border-radius: 16px;
    font-family: 'Poppins', sans-serif;
    font-size: 15px;
    color: #4a2c3a;
    background: #fefafb;
    transition: 0.3s ease;
    outline: none;
    resize: vertical;
}
.contact-right form input:focus,
.contact-right form textarea:focus {
    border-color: #f27a9a;
    box-shadow: 0 0 0 4px rgba(242, 122, 154, 0.12);
    background: #fff;
}
.contact-right form textarea {
    min-height: 150px;
}

.copyright {
    text-align: center;
    margin-top: 60px;
    padding-top: 28px;
    border-top: 2px solid #f5e0e7;
    font-size: 15px;
    color: #7a5b6b;
    letter-spacing: 0.5px;
}
.copyright i {
    color: #f27a9a;
    margin: 0 6px;
}
.copyright span {
    color: #f27a9a;
    font-weight: 600;
}

/* ──────────────────────────────────────────────
   RESPONSIVE
   ────────────────────────────────────────────── */
@media screen and (max-width: 900px) {
    .row {
        flex-direction: column;
    }
    .about-col-1,
    .about-col-2,
    .contact-left,
    .contact-right {
        flex-basis: 100%;
        width: 100%;
    }
    .about-col-1 {
        max-width: 400px;
        margin: 0 auto;
    }
    .header-text h1 {
        font-size: 48px;
    }
    .sub-title {
        font-size: 34px;
    }
    .container {
        padding: 10px 6%;
    }
    nav {
        padding: 14px 6%;
    }
}

@media screen and (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        background: rgba(254, 246, 249, 0.96);
        backdrop-filter: blur(12px);
        -webkit-backdrop-filter: blur(12px);
        padding: 20px 0;
        border-radius: 24px;
        margin-top: 12px;
        gap: 4px;
        box-shadow: 0 12px 40px rgba(242, 122, 154, 0.10);
    }
    nav ul.open {
        display: flex;
    }
    nav ul li a {
        padding: 12px 24px;
        width: 100%;
        text-align: center;
        border-radius: 12px;
    }
    nav ul li a::after {
        display: none;
    }

    .header-text h1 {
        font-size: 38px;
    }
    .header-text h1 span::after {
        font-size: 20px;
        right: -24px;
        top: -6px;
    }
    .header-text .sub-headline {
        font-size: 17px;
    }
    .btn {
        padding: 12px 28px;
        font-size: 14px;
    }
    .work img {
        height: 220px;
    }
    .layer h3 {
        font-size: 20px;
    }
    .sub-title {
        font-size: 30px;
    }
    .hero-decoration span {
        display: none;
    }
    #header::before,
    #header::after {
        font-size: 3rem;
    }
}

@media screen and (max-width: 480px) {
    .header-text h1 {
        font-size: 30px;
    }
    .header-text .greeting {
        font-size: 16px;
        letter-spacing: 2px;
    }
    .header-text .sub-headline {
        font-size: 15px;
    }
    .header-text .sub-headline i {
        margin: 0 4px;
    }
    .container {
        padding: 10px 5%;
    }
    nav {
        padding: 12px 5%;
    }
    .nav-logo a {
        font-size: 22px;
    }
    .nav-logo a span {
        font-size: 26px;
    }
    .sub-title {
        font-size: 26px;
    }
    .contact-left p {
        font-size: 15px;
    }
    .work img {
        height: 180px;
    }
}