/* =========================
   RESET
========================= */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    color: #2c211f;
    background: #fffaf5;
    line-height: 1.7;
}

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

button,
input,
textarea {
    font-family: inherit;
}

.container {
    width: 90%;
    max-width: 1180px;
    margin: auto;
}


/* =========================
   COLORS
========================= */

:root {
    --primary: #7a1f3d;
    --primary-dark: #54132a;
    --gold: #c4964a;
    --gold-light: #e5c57f;
    --cream: #fffaf5;
    --cream-dark: #f5e9db;
    --dark: #281c1a;
    --text: #675b55;
    --white: #ffffff;
    --border: #eadccd;
}


/* =========================
   NAVBAR
========================= */

.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 250, 245, 0.97);
    border-bottom: 1px solid var(--border);
    transition: 0.3s ease;
}

.navbar {
    width: 90%;
    max-width: 1200px;
    min-height: 78px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;

    color: var(--primary);

    font-family: "Cinzel", serif;
    font-size: 20px;
    font-weight: 700;

    white-space: nowrap;
}

.logo-icon {
    width: 38px;
    height: 38px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);
    color: var(--gold-light);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.nav-links a {
    color: var(--dark);
    font-size: 14px;
    font-weight: 500;

    position: relative;

    transition: 0.3s ease;
}

.nav-links a::after {
    content: "";

    position: absolute;

    width: 0;
    height: 2px;

    left: 0;
    bottom: -7px;

    background: var(--gold);

    transition: 0.3s ease;
}

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

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

.nav-button {
    padding: 11px 21px;

    background: var(--primary);
    color: var(--white);

    border-radius: 5px;

    font-size: 13px;
    font-weight: 600;

    transition: 0.3s ease;
}

.nav-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.menu-btn {
    display: none;

    border: none;
    background: transparent;

    color: var(--primary);

    font-size: 24px;

    cursor: pointer;
}


/* =========================
   HERO
========================= */

.hero {
    min-height: 100vh;

    padding: 130px 8% 80px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 60px;

    overflow: hidden;

    background:
        radial-gradient(
            circle at 80% 50%,
            rgba(196, 150, 74, 0.15),
            transparent 28%
        ),
        linear-gradient(
            135deg,
            #fffaf5,
            #f8eee3
        );
}

.hero-content {
    max-width: 650px;
}

.small-heading {
    color: var(--gold);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;

    margin-bottom: 20px;
}

.small-heading i {
    margin-right: 7px;
}

.hero h1 {
    font-family: "Cinzel", serif;

    font-size: clamp(43px, 5vw, 68px);

    line-height: 1.15;

    color: var(--dark);

    margin-bottom: 25px;
}

.hero h1 span {
    display: block;

    color: var(--primary);
}

.hero-text {
    max-width: 600px;

    color: var(--text);

    font-size: 16px;

    line-height: 1.9;

    margin-bottom: 32px;
}

.hero-buttons {
    display: flex;
    gap: 13px;
    flex-wrap: wrap;
}


/* =========================
   BUTTONS
========================= */

.primary-btn,
.secondary-btn,
.whatsapp-btn {
    min-height: 48px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: 10px;

    padding: 12px 23px;

    border-radius: 5px;

    font-size: 13px;
    font-weight: 600;

    transition: 0.3s ease;

    cursor: pointer;
}

.primary-btn {
    background: var(--primary);
    color: var(--white);

    border: 1px solid var(--primary);
}

.primary-btn:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);

    transform: translateY(-2px);
}

.secondary-btn {
    background: transparent;

    color: var(--primary);

    border: 1px solid var(--primary);
}

.secondary-btn:hover {
    background: var(--primary);
    color: var(--white);

    transform: translateY(-2px);
}

.whatsapp-btn {
    background: #168c55;
    color: white;

    border: 1px solid #168c55;
}

.whatsapp-btn:hover {
    background: #117343;

    transform: translateY(-2px);
}


/* =========================
   HERO SYMBOL
========================= */

.hero-symbol {
    width: 430px;
    height: 430px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    flex-shrink: 0;
}

.moon {
    width: 135px;
    height: 135px;

    border-radius: 50%;

    background: var(--primary);

    color: var(--gold-light);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 78px;

    box-shadow:
        0 25px 60px rgba(84, 20, 45, 0.2);

    z-index: 2;
}

.orbit {
    position: absolute;

    border: 1px solid rgba(196, 150, 74, 0.45);

    border-radius: 50%;
}

.orbit-one {
    width: 400px;
    height: 190px;

    transform: rotate(35deg);
}

.orbit-two {
    width: 190px;
    height: 400px;

    transform: rotate(35deg);
}

.hero-symbol::before {
    content: "";

    position: absolute;

    width: 285px;
    height: 285px;

    border: 1px dashed rgba(122, 31, 61, 0.35);

    border-radius: 50%;
}

.star {
    position: absolute;

    color: var(--gold);

    font-size: 24px;

    z-index: 3;
}

.star-one {
    top: 15px;
    left: 85px;
}

.star-two {
    top: 80px;
    right: 15px;
}

.star-three {
    bottom: 25px;
    right: 85px;
}

.star-four {
    bottom: 80px;
    left: 15px;
}


/* =========================
   GENERAL SECTION
========================= */

.section {
    padding: 110px 8%;
}

.section-heading {
    max-width: 780px;

    margin: auto;

    text-align: center;
}

.section-heading.center {
    text-align: center;
}

.section-label {
    color: var(--gold);

    font-size: 12px;
    font-weight: 600;

    letter-spacing: 2px;

    margin-bottom: 12px;
}

.section-heading h2 {
    font-family: "Cinzel", serif;

    color: var(--primary);

    font-size: 38px;

    line-height: 1.3;

    margin-bottom: 17px;
}

.section-heading p:last-child {
    color: var(--text);

    font-size: 15px;
}


/* =========================
   INTRO
========================= */

.intro {
    padding: 100px 8%;

    background: var(--white);
}

.intro .section-heading h2 {
    color: var(--primary);
}


/* =========================
   ABOUT
========================= */

.about {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    align-items: center;

    gap: 80px;

    background: var(--cream-dark);
}

.about-image {
    display: flex;
    justify-content: center;
}

.cosmic-circle {
    width: 320px;
    height: 320px;

    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--primary);

    box-shadow:
        0 25px 60px rgba(84, 20, 45, 0.2);
}

.cosmic-circle::before {
    content: "";

    position: absolute;

    width: 250px;
    height: 250px;

    border: 1px solid rgba(229, 197, 127, 0.5);

    border-radius: 50%;
}

.cosmic-circle > i {
    color: var(--gold-light);

    font-size: 90px;

    z-index: 2;
}

.small-star {
    position: absolute;

    color: var(--gold-light);

    font-size: 20px;

    z-index: 3;
}

.s1 {
    top: 65px;
    left: 70px;
}

.s2 {
    top: 85px;
    right: 65px;
}

.s3 {
    bottom: 65px;
    right: 95px;
}

.about-content h2 {
    font-family: "Cinzel", serif;

    color: var(--primary);

    font-size: 38px;

    line-height: 1.3;

    margin-bottom: 12px;
}

.about-content h3 {
    color: var(--dark);

    font-size: 19px;

    font-weight: 500;

    margin-bottom: 24px;
}

.about-content > p {
    color: var(--text);

    font-size: 15px;

    margin-bottom: 16px;
}

.about-points {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;

    margin-top: 28px;
}

.about-points div {
    display: flex;

    align-items: center;

    gap: 10px;

    color: var(--dark);

    font-size: 14px;

    font-weight: 500;
}

.about-points i {
    color: var(--gold);
}


/* =========================
   SERVICES
========================= */

.services {
    background: var(--white);
}

.service-grid {
    max-width: 1180px;

    margin: 55px auto 0;

    display: grid;

    grid-template-columns: repeat(3, 1fr);

    gap: 25px;
}

.service-card {
    padding: 32px 25px;

    background: var(--cream);

    border: 1px solid var(--border);

    border-radius: 8px;

    text-align: center;

    transition: 0.3s ease;
}

.service-card:hover {
    transform: translateY(-7px);

    box-shadow:
        0 18px 40px rgba(38, 28, 25, 0.08);

    border-color: var(--gold);
}

.service-icon {
    width: 62px;
    height: 62px;

    margin: 0 auto 20px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--cream-dark);

    color: var(--primary);

    font-size: 24px;
}

.service-card h3 {
    color: var(--dark);

    font-family: "Cinzel", serif;

    font-size: 20px;

    margin-bottom: 12px;
}

.service-card p {
    color: var(--text);

    font-size: 13px;

    line-height: 1.8;

    margin-bottom: 18px;
}

.service-card a {
    color: var(--primary);

    font-size: 13px;

    font-weight: 600;
}

.service-card a:hover {
    color: var(--gold);
}


/* =========================
   CONTACT
========================= */

.contact {
    display: grid;

    grid-template-columns: 0.9fr 1.1fr;

    gap: 70px;

    align-items: start;

    background: var(--cream-dark);
}

.contact-info {
    padding-top: 10px;
}

.contact-info h2 {
    font-family: "Cinzel", serif;

    color: var(--primary);

    font-size: 40px;

    line-height: 1.3;

    margin-bottom: 15px;
}

.contact-info > p {
    color: var(--text);

    font-size: 15px;

    margin-bottom: 30px;
}

.contact-item {
    display: flex;

    gap: 16px;

    margin-bottom: 25px;
}

.contact-item-icon {
    width: 48px;
    height: 48px;

    flex-shrink: 0;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: var(--white);

    color: var(--primary);

    font-size: 17px;
}

.contact-item h4 {
    color: var(--dark);

    font-size: 15px;

    margin-bottom: 2px;
}

.contact-item p,
.contact-item a {
    color: var(--text);

    font-size: 14px;

    line-height: 1.8;
}

.contact-item a:hover {
    color: var(--primary);
}

.contact-buttons {
    display: flex;

    gap: 12px;

    flex-wrap: wrap;

    margin-top: 25px;
}


/* =========================
   CONTACT FORM
========================= */

.contact-form-container {
    background: var(--white);

    padding: 35px;

    border: 1px solid var(--border);

    border-radius: 10px;

    box-shadow:
        0 15px 40px rgba(38, 28, 25, 0.07);
}

.contact-form-container h3 {
    font-family: "Cinzel", serif;

    color: var(--primary);

    font-size: 26px;

    margin-bottom: 7px;
}

.contact-form-container > p {
    color: var(--text);

    font-size: 13px;

    margin-bottom: 25px;
}

.form-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 15px;
}

.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;

    color: var(--dark);

    font-size: 13px;

    font-weight: 600;

    margin-bottom: 7px;
}

.form-group input,
.form-group textarea {
    width: 100%;

    padding: 12px 14px;

    border: 1px solid var(--border);

    border-radius: 5px;

    background: var(--cream);

    color: var(--dark);

    outline: none;

    font-size: 13px;

    transition: 0.3s ease;
}

.form-group input {
    height: 46px;
}

.form-group textarea {
    min-height: 125px;

    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);

    box-shadow:
        0 0 0 3px rgba(196, 150, 74, 0.1);
}

.form-btn {
    width: 100%;

    border: none;
}

.form-message {
    text-align: center;

    color: var(--primary);

    font-size: 13px;

    margin-top: 12px;
}


/* =========================
   FOOTER
========================= */

.footer {
    background: #25191d;

    color: white;
}

.footer-content {
    min-height: 80px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;

    padding: 20px;
}

.footer-content p {
    color: #bdb1b4;

    font-size: 12px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1000px) {

    .navbar {
        gap: 18px;
    }

    .nav-links {
        gap: 18px;
    }

    .hero {
        padding-left: 6%;
        padding-right: 6%;

        gap: 30px;
    }

    .hero-symbol {
        width: 350px;
        height: 350px;
    }

    .orbit-one {
        width: 330px;
    }

    .orbit-two {
        height: 330px;
    }

    .about {
        padding-left: 6%;
        padding-right: 6%;

        gap: 45px;
    }

    .contact {
        padding-left: 6%;
        padding-right: 6%;

        gap: 40px;
    }

}


/* =========================
   MOBILE NAV
========================= */

@media (max-width: 800px) {

    .nav-button {
        display: none;
    }

    .menu-btn {
        display: block;

        margin-left: auto;
    }

    .navbar {
        position: relative;
    }

    .nav-links {
        position: absolute;

        top: 78px;
        left: 0;

        width: 100%;

        display: none;

        flex-direction: column;

        gap: 0;

        background: var(--white);

        border-top: 1px solid var(--border);

        box-shadow:
            0 10px 25px rgba(0, 0, 0, 0.08);
    }

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

    .nav-links li {
        width: 100%;

        text-align: center;

        border-bottom: 1px solid #f0e7df;
    }

    .nav-links a {
        display: block;

        padding: 15px;
    }

    .nav-links a::after {
        display: none;
    }


    .hero {
        min-height: auto;

        padding-top: 140px;
        padding-bottom: 80px;

        flex-direction: column;

        text-align: center;
    }

    .hero-content {
        max-width: 700px;
    }

    .hero-text {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-symbol {
        width: 300px;
        height: 300px;
    }

    .moon {
        width: 100px;
        height: 100px;

        font-size: 55px;
    }

    .orbit-one {
        width: 285px;
        height: 140px;
    }

    .orbit-two {
        width: 140px;
        height: 285px;
    }


    .about {
        grid-template-columns: 1fr;

        text-align: center;
    }

    .about-image {
        order: -1;
    }

    .about-points {
        text-align: left;
    }


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


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

}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .navbar {
        min-height: 70px;
    }

    .logo {
        font-size: 17px;
    }

    .logo-icon {
        width: 33px;
        height: 33px;
    }

    .nav-links {
        top: 70px;
    }


    .hero {
        padding-top: 125px;
    }

    .small-heading {
        font-size: 10px;

        letter-spacing: 1.2px;
    }

    .hero h1 {
        font-size: 38px;
    }

    .hero-text {
        font-size: 14px;
    }

    .hero-buttons {
        flex-direction: column;

        align-items: stretch;
    }

    .hero-buttons a {
        width: 100%;
    }


    .hero-symbol {
        width: 260px;
        height: 260px;
    }

    .hero-symbol::before {
        width: 190px;
        height: 190px;
    }

    .orbit-one {
        width: 245px;
        height: 115px;
    }

    .orbit-two {
        width: 115px;
        height: 245px;
    }


    .section {
        padding: 75px 6%;
    }

    .intro {
        padding: 75px 6%;
    }


    .section-heading h2,
    .about-content h2 {
        font-size: 29px;
    }

    .contact-info h2 {
        font-size: 31px;
    }


    .about-points {
        grid-template-columns: 1fr;
    }


    .cosmic-circle {
        width: 250px;
        height: 250px;
    }

    .cosmic-circle::before {
        width: 195px;
        height: 195px;
    }

    .cosmic-circle > i {
        font-size: 70px;
    }


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


    .form-row {
        grid-template-columns: 1fr;

        gap: 0;
    }


    .contact-form-container {
        padding: 25px 20px;
    }


    .contact-buttons {
        flex-direction: column;
    }

    .contact-buttons a {
        width: 100%;
    }

}


/* =========================
   EXTRA SMALL
========================= */

@media (max-width: 400px) {

    .hero h1 {
        font-size: 33px;
    }

    .hero-symbol {
        width: 225px;
        height: 225px;
    }

    .moon {
        width: 80px;
        height: 80px;

        font-size: 43px;
    }

    .orbit-one {
        width: 215px;
        height: 100px;
    }

    .orbit-two {
        width: 100px;
        height: 215px;
    }

}