@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Devanagari:wght@400;500;600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans Devanagari', Arial, sans-serif;
    background: #fffaf0;
    color: #4a1812;
}


/* ================= HEADER ================= */

.header {
    height: 75px;
    background: rgba(255,255,255,0.95);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 7%;
    border-bottom: 1px solid #e8c77c;
    position: relative;
    z-index: 10;
}

.logo-area img {
    width: 65px;
    height: 65px;
    object-fit: contain;
}

nav {
    display: flex;
    gap: 35px;
}

nav a {
    text-decoration: none;
    color: #5c2118;
    font-weight: 600;
    transition: 0.3s;
}

nav a:hover {
    color: #b30000;
}

.om {
    font-size: 35px;
    color: #a46a16;
}


/* ================= HERO ================= */

.hero {
    min-height: 650px;
    display: flex;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;

    background:
        radial-gradient(circle at center,
        #fffdf8 0%,
        #fff7e7 55%,
        #f7e0ae 100%);
}

.hero::before,
.hero::after {
    content: "🪷";
    position: absolute;
    font-size: 180px;
    opacity: 0.06;
}

.hero::before {
    left: -30px;
    bottom: 10px;
}

.hero::after {
    right: -30px;
    top: 50px;
}

.hero-content {
    width: 900px;
    padding: 35px 20px;
}

.hero-logo {
    width: 150px;
    height: 150px;
    object-fit: contain;
}

.hero h1 {
    font-size: 54px;
    color: #8d1111;
    margin-top: 5px;
    font-weight: 800;
}

.tagline {
    display: flex;
    justify-content: center;
    gap: 18px;
    margin: 5px 0 20px;
    font-size: 21px;
    color: #54201a;
}

.tagline b {
    color: #c4861c;
}


/* ================= COMING SOON ================= */

.coming-box {
    max-width: 760px;
    margin: auto;

    background: linear-gradient(
        135deg,
        #8c0000,
        #c41414,
        #790000
    );

    padding: 18px 25px 24px;

    border-radius: 50% 45% 50% 45%;

    transform: rotate(-1deg);

    box-shadow:
        0 12px 25px rgba(100,0,0,0.25);
}

.small-title {
    color: white;
    font-size: 30px;
    font-weight: 800;
}

.big-title {
    font-family: Arial, sans-serif;
    color: #ffe27a;
    font-size: 65px;
    font-weight: 900;

    text-shadow:
        3px 4px 0 #8a3000,
        0 5px 10px rgba(0,0,0,0.3);
}

.hero-text {
    margin-top: 22px;
    font-size: 23px;
    font-weight: 500;
}


/* ================= WEBSITE ================= */

.website {
    display: inline-block;

    margin-top: 15px;
    padding: 14px 30px;

    background: #ffd86e;

    border-radius: 40px;

    color: #4c170e;

    font-size: 22px;

    box-shadow: 0 5px 15px rgba(100,50,0,0.15);
}


/* ================= COUNTDOWN ================= */

.countdown {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 25px;
}

.countdown div {
    width: 90px;
    padding: 10px;

    background: white;

    border: 1px solid #e5b64c;
    border-radius: 10px;

    box-shadow: 0 5px 12px rgba(0,0,0,0.08);
}

.countdown strong {
    display: block;
    font-size: 27px;
    color: #9b0d0d;
}

.countdown span {
    font-size: 12px;
}


/* ================= BELLS ================= */

.bell {
    position: absolute;
    top: 40px;
    font-size: 55px;
    animation: swing 2s infinite ease-in-out;
}

.bell-left {
    left: 4%;
}

.bell-right {
    right: 4%;
}

@keyframes swing {

    0%,100% {
        transform: rotate(-8deg);
    }

    50% {
        transform: rotate(8deg);
    }

}


/* ================= FEATURES ================= */

.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    gap: 20px;

    padding: 40px 7%;

    background: #fff;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;

    padding: 18px;

    border-right: 1px solid #e4c37a;
}

.feature-icon {
    min-width: 55px;
    height: 55px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: #9b1010;
    color: #ffd96a;

    font-size: 24px;
    font-weight: bold;
}

.feature h3 {
    color: #86100e;
    font-size: 18px;
}

.feature p {
    font-size: 13px;
    margin-top: 4px;
}


/* ================= SUBSCRIBE ================= */

.subscribe {
    padding: 30px 7%;
    background: #f8e2ae;
}

.subscribe-content {
    max-width: 1100px;
    margin: auto;

    display: flex;
    align-items: center;
    justify-content: space-between;

    gap: 30px;
}

.subscribe-text {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mail-icon {
    width: 55px;
    height: 55px;

    display: flex;
    justify-content: center;
    align-items: center;

    border-radius: 50%;

    background: #8f1010;
    color: white;

    font-size: 25px;
}

.subscribe h2 {
    font-size: 20px;
}

.subscribe p {
    font-size: 13px;
}

form {
    display: flex;
    flex: 1;
    max-width: 600px;
}

form input {
    flex: 1;

    padding: 15px;

    border: none;
    outline: none;

    border-radius: 10px 0 0 10px;

    font-size: 15px;
}

form button {
    border: none;

    padding: 0 25px;

    background: #9c1010;
    color: white;

    font-weight: bold;

    border-radius: 0 10px 10px 0;

    cursor: pointer;

    transition: 0.3s;
}

form button:hover {
    background: #680707;
}


/* ================= QR ================= */

.qr-section {
    text-align: center;
    padding: 45px 20px;
    background: #fffaf0;
}

.qr-section h2 {
    color: #8c1010;
}

.qr-section p {
    margin: 8px;
}

#qrcode {
    display: inline-block;
    margin-top: 15px;

    padding: 12px;

    background: white;

    border: 4px solid #c99b35;
}

.qr-url {
    font-weight: bold;
}


/* ================= CONTACT ================= */

.contact {
    text-align: center;

    padding: 45px 20px;

    background: #7e0808;
    color: white;
}

.contact h2 {
    font-size: 30px;
}

.contact-details {
    display: flex;
    justify-content: center;
    gap: 30px;

    margin-top: 20px;
    flex-wrap: wrap;
}

.contact-details a {
    color: #ffe08a;
    text-decoration: none;
}


/* ================= FOOTER ================= */

footer {
    background: #4d0505;
    color: #ffe18b;

    padding: 18px 7%;

    display: flex;
    justify-content: space-between;
}


/* ================= WHATSAPP ================= */

.whatsapp {
    position: fixed;

    right: 22px;
    bottom: 22px;

    width: 60px;
    height: 60px;

    display: flex;
    align-items: center;
    justify-content: center;

    background: #25d366;

    color: white;

    border-radius: 50%;

    font-size: 30px;

    text-decoration: none;

    box-shadow: 0 5px 20px rgba(0,0,0,0.25);

    z-index: 100;
}


/* ================= MOBILE ================= */

@media(max-width: 768px) {

    .header {
        height: auto;
        padding: 10px 20px;
    }

    nav {
        display: none;
    }

    .om {
        font-size: 28px;
    }

    .hero {
        min-height: 600px;
    }

    .hero-content {
        padding: 30px 15px;
    }

    .hero-logo {
        width: 110px;
        height: 110px;
    }

    .hero h1 {
        font-size: 35px;
    }

    .tagline {
        font-size: 17px;
    }

    .big-title {
        font-size: 38px;
    }

    .small-title {
        font-size: 21px;
    }

    .hero-text {
        font-size: 17px;
    }

    .website {
        font-size: 16px;
        padding: 12px 18px;
    }

    .countdown {
        gap: 6px;
    }

    .countdown div {
        width: 70px;
    }

    .countdown strong {
        font-size: 20px;
    }

    .features {
        grid-template-columns: 1fr;
        padding: 25px 20px;
    }

    .feature {
        border-right: none;
        border-bottom: 1px solid #e4c37a;
    }

    .subscribe-content {
        flex-direction: column;
        text-align: center;
    }

    form {
        width: 100%;
    }

    form button {
        padding: 0 15px;
    }

    footer {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }

}