@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Dancing+Script:wght@400;600;700&family=Poppins:wght@300;400;500;600&display=swap');

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

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.7;
    color: #3d3229;
    background-color: #faf7f2;
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

.decorator {
    text-align: center;
    color: #c9a87c;
    font-size: 20px;
    letter-spacing: 8px;
    margin-bottom: 10px;
}

.section-divider {
    width: 60px;
    height: 2px;
    background-color: #c9a87c;
    margin: 0 auto 40px auto;
}

.navbar {
    background-color: #faf7f2;
    padding: 18px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid #e8ddd3;
    transition: box-shadow 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 2px 15px rgba(0,0,0,0.08);
}

.navbar .logo {
    font-family: 'Dancing Script', cursive;
    font-size: 26px;
    color: #3d3229;
    font-weight: 700;
}

.navbar .logo span {
    color: #c9a87c;
}

.navbar .nav-links {
    display: flex;
    list-style: none;
    gap: 30px;
}

.navbar .nav-links a {
    font-size: 14px;
    font-weight: 500;
    color: #6b5b4e;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: color 0.3s ease;
}

.navbar .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #c9a87c;
    transition: width 0.3s ease;
}

.navbar .nav-links a:hover {
    color: #c9a87c;
}

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 2px;
    background-color: #3d3229;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.hero {
    background: linear-gradient(135deg, #f5ede3 0%, #faf7f2 50%, #f0e6d8 100%);
    padding: 100px 40px 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '✦';
    position: absolute;
    top: 30px;
    left: 15%;
    font-size: 18px;
    color: #c9a87c;
    animation: sparkle 3s ease-in-out infinite;
}

.hero::after {
    content: '✦';
    position: absolute;
    top: 60px;
    right: 15%;
    font-size: 14px;
    color: #c9a87c;
    animation: sparkle 3s ease-in-out infinite 1.5s;
}

@keyframes sparkle {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.3); }
}

.hero .greeting {
    font-family: 'Dancing Script', cursive;
    font-size: 22px;
    color: #c9a87c;
    margin-bottom: 10px;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    color: #3d3229;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.hero .subtitle {
    font-family: 'Dancing Script', cursive;
    font-size: 26px;
    color: #c9a87c;
    margin-bottom: 20px;
}

.hero .tagline {
    font-size: 15px;
    color: #7a6b5e;
    max-width: 550px;
    margin: 0 auto 35px auto;
    font-weight: 300;
}

.hero .hero-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-primary {
    background-color: #c9a87c;
    color: #fff;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(201, 168, 124, 0.3);
}

.btn-primary:hover {
    background-color: #b8945e;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(201, 168, 124, 0.4);
}

.btn-secondary {
    background-color: transparent;
    color: #c9a87c;
    padding: 14px 35px;
    border-radius: 30px;
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: 2px solid #c9a87c;
    transition: all 0.4s ease;
}

.btn-secondary:hover {
    background-color: #c9a87c;
    color: #fff;
    transform: translateY(-3px);
}

.section {
    padding: 80px 40px;
    max-width: 1100px;
    margin: 0 auto;
}

.section-alt {
    background-color: #f0e6d8;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    text-align: center;
    margin-bottom: 10px;
    color: #3d3229;
}

.section-title span {
    font-family: 'Dancing Script', cursive;
    color: #c9a87c;
}

.section-subtitle {
    text-align: center;
    font-size: 14px;
    color: #7a6b5e;
    margin-bottom: 15px;
    font-weight: 300;
}

.why-hire {
    background-color: #f0e6d8;
    padding: 80px 40px;
}
.why-hire-content {
    max-width: 700px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    align-items: center;
    text-align: center;
}

.why-hire-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 10px;
    color: #3d3229;
}

.why-hire-text .script {
    font-family: 'Dancing Script', cursive;
    font-size: 22px;
    color: #c9a87c;
    margin-bottom: 20px;
}

.why-hire-text p {
    font-size: 14px;
    color: #6b5b4e;
    margin-bottom: 15px;
    font-weight: 300;
}

.why-hire-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.why-hire-image:hover {
    transform: scale(1.02);
}

.why-hire-image img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.service-card {
    background-color: #fff;
    padding: 30px 22px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid #e8ddd3;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: #c9a87c;
}

.service-card .icon {
    font-size: 32px;
    margin-bottom: 15px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.service-card:hover .icon {
    transform: scale(1.2);
}

.service-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    margin-bottom: 10px;
    color: #3d3229;
}

.service-card p {
    font-size: 13px;
    color: #7a6b5e;
    font-weight: 300;
}

.about-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-text h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    margin-bottom: 5px;
}

.about-text .script {
    font-family: 'Dancing Script', cursive;
    font-size: 24px;
    color: #c9a87c;
    margin-bottom: 20px;
}

.about-text p {
    font-size: 14px;
    color: #6b5b4e;
    margin-bottom: 15px;
    font-weight: 300;
}

.about-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.5s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.tools-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.tool-tag {
    background-color: #fff;
    color: #3d3229;
    padding: 10px 22px;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 500;
    border: 1px solid #e8ddd3;
    transition: all 0.3s ease;
}

.tool-tag:hover {
    background-color: #c9a87c;
    color: #fff;
    border-color: #c9a87c;
    transform: translateY(-3px);
}

.contact-section {
    background: linear-gradient(135deg, #3d3229 0%, #5a4636 100%);
    color: #fff;
    padding: 80px 40px;
    text-align: center;
}

.contact-section h2 {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    margin-bottom: 5px;
}

.contact-section p {
    color: #c4b5a5;
    margin-bottom: 35px;
    font-size: 15px;
    font-weight: 300;
}

.contact-links {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-link {
    background-color: rgba(255,255,255,0.1);
    color: #c9a87c;
    padding: 14px 28px;
    border-radius: 30px;
    font-size: 14px;
    transition: all 0.4s ease;
    border: 1px solid rgba(201, 168, 124, 0.3);
}

.contact-link:hover {
    background-color: #c9a87c;
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(201, 168, 124, 0.3);
}

.projects-hero {
    background: linear-gradient(135deg, #f5ede3 0%, #f0e6d8 100%);
    padding: 60px 40px;
    text-align: center;
}

.projects-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 38px;
    color: #3d3229;
    margin-bottom: 5px;
}

.projects-hero .script {
    font-family: 'Dancing Script', cursive;
    font-size: 22px;
    color: #c9a87c;
    margin-bottom: 10px;
}

.projects-hero p {
    color: #7a6b5e;
    font-size: 15px;
    font-weight: 300;
}

.category-title {
    font-family: 'Playfair Display', serif;
    font-size: 26px;
    color: #3d3229;
    margin-bottom: 5px;
}

.category-script {
    font-family: 'Dancing Script', cursive;
    font-size: 18px;
    color: #c9a87c;
    margin-bottom: 30px;
}

.projects-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.project-card {
    background-color: #fff;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s ease;
    border: 1px solid #e8ddd3;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.project-card .project-image {
    overflow: hidden;
}

.project-card .project-image img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top left;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image img {
    transform: scale(1.05);
}

.project-images-grid {
    display: grid;
    gap: 3px;
    overflow: hidden;
}

.project-images-grid.grid-3 {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
}

.project-images-grid.grid-3 img:first-child {
    grid-row: 1 / 3;
    height: 223px;
}

.project-images-grid.grid-3 img {
    width: 100%;
    height: 110px;
    object-fit: cover;
    object-position: top left;
    transition: transform 0.5s ease;
}

.project-card:hover .project-images-grid img {
    transform: scale(1.05);
}

.project-images-grid.grid-2 {
    grid-template-columns: 1fr 1fr;
}

.project-images-grid.grid-2 img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top left;
    transition: transform 0.5s ease;
}

.project-card:hover .project-images-grid.grid-2 img {
    transform: scale(1.05);
}

.project-card .project-info {
    padding: 22px;
}

.project-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    color: #3d3229;
    margin-bottom: 8px;
}

.project-card .tools {
    font-size: 12px;
    color: #c9a87c;
    margin-bottom: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.project-card p {
    font-size: 13px;
    color: #7a6b5e;
    font-weight: 300;
}

.footer {
    background-color: #3d3229;
    color: #8a7b6e;
    text-align: center;
    padding: 25px;
    font-size: 13px;
}

.footer span {
    color: #c9a87c;
}
/* ===== LIGHTBOX ===== */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.lightbox.active {
    display: flex;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 8px;
    cursor: default;
    touch-action: none;
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 25px;
    color: #fff;
    font-size: 35px;
    cursor: pointer;
    z-index: 10000;
    background: none;
    border: none;
    transition: color 0.3s ease;
}

.lightbox-close:hover {
    color: #c9a87c;
}

.project-card img {
    cursor: pointer;
}
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .navbar {
        padding: 15px 20px;
    }

    .navbar .nav-links {
        display: none;
        position: absolute;
        top: 55px;
        left: 0;
        right: 0;
        background-color: #faf7f2;
        flex-direction: column;
        padding: 20px 25px;
        gap: 15px;
        border-bottom: 1px solid #e8ddd3;
    }

    .navbar .nav-links.active {
        display: flex;
    }

    .hero {
        padding: 50px 20px 40px 20px;
    }

    .hero h1 {
        font-size: 28px;
        letter-spacing: 1px;
    }

    .hero .subtitle {
        font-size: 18px;
    }

    .hero .tagline {
        font-size: 13px;
        padding: 0 10px;
    }

    .hero .greeting {
        font-size: 18px;
    }

    .hero .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 12px;
    }

    .btn-primary,
    .btn-secondary {
        width: 80%;
        text-align: center;
        padding: 14px 20px;
    }

    .section {
        padding: 40px 20px;
    }

    .section-title {
        font-size: 24px;
    }

    .section-subtitle {
        font-size: 13px;
        padding: 0 10px;
    }

    .services-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .service-card {
        padding: 20px 15px;
        border-radius: 12px;
    }

    .service-card .icon {
        font-size: 26px;
        margin-bottom: 10px;
    }

    .service-card h3 {
        font-size: 14px;
    }

    .service-card p {
        font-size: 12px;
    }

    .why-hire {
        padding: 40px 20px;
    }

    .why-hire-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-hire-text h2 {
        font-size: 22px;
        text-align: center;
    }

    .why-hire-text .script {
        font-size: 18px;
        text-align: center;
    }

    .why-hire-text p {
        font-size: 13px;
        text-align: center;
    }

    .why-hire-image img {
        height: 220px;
        border-radius: 12px;
    }

    .about-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }

    .about-text h2 {
        font-size: 22px;
    }

    .about-text .script {
        font-size: 20px;
    }

    .about-text p {
        font-size: 13px;
    }

    .about-image {
        order: -1;
    }

    .about-image img {
        height: 250px;
        border-radius: 12px;
    }

    .tools-grid {
        gap: 8px;
    }

    .tool-tag {
        padding: 8px 16px;
        font-size: 12px;
    }

    .projects-hero {
        padding: 40px 20px;
    }

    .projects-hero h1 {
        font-size: 28px;
    }

    .projects-hero .script {
        font-size: 18px;
    }

    .projects-hero p {
        font-size: 13px;
    }

    .category-title {
        font-size: 22px;
    }

    .category-script {
        font-size: 16px;
    }

    .projects-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .project-card .project-image img {
        height: 200px;
    }

    .project-images-grid.grid-3 img:first-child {
        height: 180px;
    }

    .project-images-grid.grid-3 img {
        height: 88px;
    }

    .project-images-grid.grid-2 img {
        height: 180px;
    }

    .project-card .project-info {
        padding: 18px;
    }

    .project-card h3 {
        font-size: 16px;
    }

    .project-card .tools {
        font-size: 11px;
    }

    .project-card p {
        font-size: 12px;
    }

    .contact-section {
        padding: 40px 20px;
    }

    .contact-section h2 {
        font-size: 24px;
    }

    .contact-section p {
        font-size: 13px;
        padding: 0 10px;
    }

    .contact-links {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .contact-link {
        width: 80%;
        text-align: center;
        padding: 14px 20px;
    }

    .footer {
        padding: 20px 15px;
        font-size: 12px;
    }
 
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 24px;
    }

    .hero .subtitle {
        font-size: 16px;
    }

    .hero .greeting {
        font-size: 16px;
    }

    .navbar .logo {
        font-size: 22px;
    }

    .services-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .service-card {
        display: flex;
        align-items: center;
        text-align: left;
        gap: 15px;
        padding: 18px;
    }

    .service-card .icon {
        font-size: 24px;
        margin-bottom: 0;
        flex-shrink: 0;
    }

    .service-card h3 {
        font-size: 14px;
        margin-bottom: 4px;
    }

    .service-card p {
        font-size: 11px;
    }

    .section-title {
        font-size: 20px;
    }

    .project-card .project-image img {
        height: 170px;
    }

    .project-images-grid.grid-2 img {
        height: 150px;
    }

    .project-images-grid.grid-3 img:first-child {
        height: 150px;
    }

    .project-images-grid.grid-3 img {
        height: 73px;
    }

    .btn-primary,
    .btn-secondary {
        width: 90%;
        font-size: 13px;
    }

    .contact-link {
        width: 90%;
        font-size: 13px;
    }

    .about-image img {
        height: 200px;
    }

    .why-hire-image img {
        height: 180px;
    }

    .contact-section h2 {
        font-size: 20px;
    }

    .tool-tag {
        padding: 7px 14px;
        font-size: 11px;
    }
}