/* === Import Google Fonts === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Mulish:ital,wght@0,200..1000;1,200..1000&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Raleway:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');

/* === General Styles === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Playfair Display', sans-serif;
    background: linear-gradient(to bottom, #f0f4ff, #ffffff);
    color: #333;
    overflow-x: hidden;
}

body.lock-scroll {
    overflow: hidden;
    position: relative;
    padding-right: var(--scrollbar-width, 0px);
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

section {
    padding: 100px 20px;
}

/* === Navigation === */
header {
    /* background: rgba(255, 255, 255, 0.589); */
    /* backdrop-filter: blur(10px); */
    /* box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05); */
    position: absolute;
    width: 100%;
    /* background-color: black; */
}

nav {
    max-width: 1200px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
}

.logo {
    height: 45px;
    width: 90px;
    z-index: 1000;
    position: relative;
}

.nav-links {
    display: flex;
    gap: 30px;
    color: #fff;
}

.nav-links li {
    list-style: none;
    /* background-color: red; */
    z-index: 1000;
    position: relative;
}

.nav-links a:hover {
    color: #0077ff;
}

/* DropeDownMenu  */

.dropdown {
    position: relative;
}

.dropdown-content {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.4s ease, opacity 0.4s ease;
    position: absolute;
    top: 25px;
    left: -15px;
    font-size: 0.9em;
    /* background-color: rgba(255, 255, 255, 0.8); */
    min-width: 137px;
    /* box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); */
    z-index: 1;
}


.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    color: #fff;
    padding: 8px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    color: #0077ff;
}

/* === Burger Menu === */
.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1000;
}

.burger .line1,
.burger .line2,
.burger .line3 {
    width: 25px;
    height: 3px;
    background-color: #fafafa;
    margin: 4px;
    border-radius: 20%;
    transition: all 0.3s ease;
}

.burger.toggle .line1 {
    transform: rotate(-50deg) translate(-5px, 6px);
}

.burger.toggle .line2 {
    opacity: 0;
}

.burger.toggle .line3 {
    transform: rotate(50deg) translate(-5px, -6px);
}

/* === Hero Section === */
.hero {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    position: relative;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.6);
    text-align: center;
    overflow: hidden;
}

.hero>.cursor {
    position: fixed;
    z-index: 99999;
    display: flex;
    height: 50px;
    width: 200px;
    left: 0;
    top: 0;
    opacity: 0;
    transition: opacity 0.2s ease;
    background-color: transparent;
    pointer-events: none;
}

.hero>.cursor h4,
i {
    font-size: 1vw;
    color: #f1f1f1;
    font-weight: 300;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    /* background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0,0,0,0.4)); */
}

.hero video {
    height: 100%;
    width: 100%;
    object-fit: cover;
    position: absolute;
}

.hero>.up {
    /* height: 100%; */
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    /* flex-direction: column; */
    position: relative;
    bottom: -40%;
    gap: 3px;
    font-family: "Montserrat", sans-serif;
    /* border-color: transparent; */
}

.hero .up .big-text {
    font-size: 15vw;
    font-weight: 300;
    line-height: 1rem;
    color: #fff1f1;
}

.hero .up h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    animation: slideIn 1s ease-in-out forwards;
}

.hero .up p {
    font-size: 1.4rem;
    animation: fadeIn 2s ease-in-out forwards;
}

/* === Gallery Section === */
.gallery{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.gallery h1 {
    font-size: 2.5rem;
    margin-bottom: 70px;
    position: relative;
    display: inline-block;
}

/* .gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: auto;
} */

/* .gallery-item {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    cursor: pointer;
} */

/* .gallery-item img {
    height: 100%;
    width: 100%;
    display: block;
    filter: grayscale(60%);
    transition: transform 0.4s ease;
    object-fit: cover;
} */

/* .gallery-item img:focus {
    outline: 2px solid #0077ff;
} */

/* .gallery-item:hover img {
    transform: scale(1.1) rotate(1deg);
    filter: grayscale(0);
} */

/* .photo-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1e40af73;
    color: rgb(255, 255, 255);
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
} */

/* .gallery-item:hover .photo-info {
    transform: translateY(0);
} */

/* .photo-info .hed {
    margin-bottom: 10px;
    font-size: clamp(1.1rem, 3vw, 1.2rem);
    line-height: 3em;
    color: #ffffff;
    text-decoration: underline;
    transition: color 0.3s ease;
} */

/* .photo-info .hed:hover {
    color: #032246;
} */

/* .photo-info p {
    font-size: clamp(0.20rem, 3vw, 0.70rem);
    opacity: 0.8;
} */

.gallery .container{
    display: flex;
    flex-direction: column;
    gap: 15vh;
    justify-content: center;
    width: 100%;
    height: fit-content;
}

.gallery .container .frame{
    width: 100%;
    min-height: 45vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}

.gallery .container .frame .pic{
    width: 30%;
    height: 80%;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    overflow: hidden;
}

.gallery .container .frame .pic img{
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.gallery .container .frame .detail{
    width: 30%;
    height: 80%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 3vh;
}

.gallery .container .frame.left .detail{
    text-align: left;
    align-items: flex-start;
}

.gallery .container .frame.right .detail{
    text-align: right;
    align-items: flex-end;
}

.gallery .container .frame.right .detail .btn{
    justify-content: right;
}

.gallery .container .frame .detail h2{
    font-size: 2vw; 
    font-weight: 400; 
    color: #2c3e50; 
    letter-spacing: 1px;
}

.gallery .container .frame .detail p{
    font-size: 1vw; 
    line-height: 1.5; 
    color: #2d3436; 
}

.gallery .container .frame .detail p>span{
    font-size: 1.5vw; 
    letter-spacing: 4px; 
    text-transform: uppercase; 
    color: #1f1e1e;
}

.gallery .container .frame .btn{
    width: 120px;
    display: flex;
    justify-content: left;
    align-items: center;
    border: none;
    font-size: 1.1vw;
    cursor: pointer;

}

/* === About Section === */
.about {
    display: flex;
    /* flex-wrap: wrap; */
    align-items: center;
    justify-content: space-between;
    background-color: #f0f4ff;
    padding: 5vh 10vw 5vh 10vw;
    /* gap: 30px; */
    
}

.about-text {
    /* flex: 1 1 500px; */
    max-width: 30vw;
    color: #333;
    text-align: left;
    /* margin-left: 100px; */

}

.about h2 {
    font-size: 3vw;
    margin-bottom: 20px;
    margin-left: 2vw;
    animation: fadeIn 1.2s ease-out;
}

.about p {
    font-size: 1.2vw;
    line-height: 1.5;
    margin-top: 10px;
    animation: fadeIn 1.2s ease-out;
}

.my {
    flex: 1 1 300px;
    max-width: 300px;
    height: auto;
    background-color: #ffffff;
    border-radius: 12px;
    box-shadow: 0 6px 25px #0707079f;
    overflow: hidden;
    /* margin-right: 100px; */
}

.my img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    filter: grayscale(100%);
    transition: all 0.4s ease;
}

.my img:hover {
    transform: scale(1.1);
    filter: grayscale(0);
    transition: transform 0.4s ease;
}

/* === Contact Section === */
section.contactus {
    width: 100%;
    height: 100%;
    text-align: center;
    padding-bottom: 10px;
}

.contactus h1 {
    color: #4d4c4ce3;
    font-size: 1.9rem;
    margin: 12px;

}

.Form {
    grid-area: Form;
}

.info {
    grid-area: info;
}

.map {
    grid-area: map;
}

.container {
    display: grid;
    height: auto;
    grid-template-areas:
        "Form info"
        "Form map";
    grid-template-columns: 2fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;

}


.contact {
    background: #faf6f6;
    padding: 40px;
    border-radius: 20px;
}

.contact h2 {
    color: #807e7ef5;
}

form {
    max-width: 100%;
    height: 100%;
    padding: 2rem;
    margin-bottom: 1.5rem;

}

.form-group {
    position: relative;
    margin-bottom: 1.5rem;
}

input,
textarea {
    width: 90%;
    position: relative;
    padding: 0.75rem 0.75rem;
    border: 2px solid #ccc;
    border-radius: 6px;
    font-size: 1rem;
    background: none;
    outline: none;
    cursor: pointer;
    transition: border-color 0.3s;
}

textarea {
    resize: none;
    font-family: 'Poppins', sans-serif;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #0077ff;
    box-shadow: 0 0 3px #0077ff50;
    caret-color: #0077ff;
}

label {
    position: absolute;
    left: 7%;
    top: 0.8rem;
    color: #777;
    background-color: #fffcfc33;
    font-size: 0.9rem;
    pointer-events: none;
    transition: 0.2s ease all;
}

input:focus+label,
input:not(:placeholder-shown)+label,
textarea:focus+label,
textarea:not(:placeholder-shown)+label {
    top: -0.55rem;
    left: 7%;
    background: #f9f9f9;
    padding: 0 0.25rem;
    font-size: 0.75rem;
    color: #0077ff;
}

/* occasion dropedwon */
.dropdow .option {
    width: 90%;
    position: relative;
    text-align: left;
    border: 1px solid;
    overflow: hidden;
    top: 7px;
    left: 5%;
    min-height: 0;
    border-radius: 11px;
    border: 2px solid;
    border-color: #afaeae;
    background: none;
    outline: none;
    cursor: pointer;
    z-index: 1;
    opacity: 0;
    display: none;
    transition: border-color 0.3s, opacity 0.4s ease-in, max-height 2.4s ease;
}

.dropdow.active .option {
    display: block;
    max-height: 40%;
    opacity: 1;
}

.option:hover {
    border-color: #0077ff;
    box-shadow: 0 0 3px #0077ff50;
}

.dropdow .option>div {
    width: 100%;
    padding: 5px 5px;
    color: #999797;
    transition: all 0.2s ease-in-out;
}

.dropdow .option>div:nth-child(4) {
    border-bottom: 0px;
}

.dropdow .option>div:hover {
    background-color: #0077ff;
    color: #fff;
}

.dropdow::before {
    content: '';
    position: absolute;
    border: 2px solid;
    z-index: 1;
    border-color: #707070;
    height: 8px;
    width: 8px;
    top: 14px;
    right: 10%;
    border-top: 0px;
    border-left: 0px;
    transform: rotate(45deg);
    transition: all 0.3s;
}

.dropdow.active::before {
    border-color: #0077ff;
    transform: rotate(226deg);
    top: 17px;
}

.error {
    color: red;
    font-size: 0.8rem;
    margin-top: 0.3rem;
}

button[type="submit"] {
    width: 80%;
    padding: 1rem;
    background: #0077ff;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

button[type="submit"]:hover {
    background: #005fcc;
    transform: translateY(-2px);
}

/* contact info */

#info {
    text-align: left;
    background-color: #107ffdc2;
    position: relative;
}

h4 {
    color: #faf5f5ee;
    font-size: 1.3rem;
}

.info .infobox div {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    margin-top: 17px;
}

.info .infobox div>span {
    width: 40px;
    height: 40px;
    cursor: pointer;
    background-color: #0979e9;
    color: #fff;
    display: flex;
    font-size: 1vw;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    box-shadow: 1px 1px 5px 1px #0030cce7,
        inset -0.1px -0.1px 5px -1px #0030cce0;
    transition: all 0.9s ease;
}

.info .infobox div>span:hover {
    box-shadow: inset 1.1px 1.1px 9px 3px #0030cce0,
        1px 1px 7px 1px #0030cce7,
        -1px -1px 4px -1px #0030cce7;
    transition: all 0.9s ease;
    color: #b9b7b7;
}

.infobox a {
    display: flex;
    flex-wrap: wrap;
    margin-left: 10px;
    color: #f6f6fa;
    text-decoration: none;
    transition: all 0.4s ease;
    font-family: 'Courier New', Courier, monospace;
}

.infobox a:hover {
    color: #0003cc;
    text-shadow: 1.2px 1.2px 5px #0979e9;
    opacity: 0.6;
}

.infobox .adrs {
    font-size: 1vw;
    transition: all 0.4s ease;
}

.infobox .em {
    font-size: 1vw;
    transition: all 0.4s ease;
}

.infobox .no {
    font-size: 1vw;
    transition: all 0.4s ease;
}

.sci {
    display: flex;
    margin-top: 48px;
}

.sci li {
    list-style: none;
    margin-left: 6px;
    color: #a8a8a8;
}

.sci .icon {
    font-size: 1.3em;

}

.sci .icon:hover {
    opacity: 0.5;
    color: rgb(65, 65, 65);
    font-size: 2em;
}

/* map */

.map {
    padding: 0;
    overflow: hidden;
}

.map iframe {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    object-fit: cover;
}

/* whatsapp sticky icon */

.wp {
    position: sticky;
    display: inline-block;
    bottom: 20px;
    left: 94%;
    right: 14%;
    z-index: 100;
    overflow: hidden;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    animation: fadeInUp 2s ease;
}

.wp img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* message box */

.msgbox {
    display: none;
    justify-content: center;
    align-items: center;
    position: fixed;
    height: 100vh;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 9999;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease;
}

.box {
    height: 320px;
    min-width: 60%;
    background-color: #fff;
    display: flex;
    padding: 10px;
    justify-content: space-around;
    flex-direction: column;
    align-items: center;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
    border: 5px solid #c7c7c7;
    padding: 10px;
}

.close {
    height: 40px;
    width: 20%;
    padding: 10px;
    border-radius: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
    font-size: clamp(0.70rem, 2vw, 1rem);
    box-shadow: 0 0 0px 0 #b9b7b7;
    cursor: pointer;
    background-color: #0979e9;
    color: #fff;
    transition: all 0.9s ease;
}

.close:hover {
    box-shadow: inset 1.1px 1.1px 9px 3px #0030cce0,
        1px 1px 7px 1px #0030cce7,
        -1px -1px 4px -1px #0030cce7;
    transition: all 0.9s ease;
    color: #b9b7b7;
}

#status {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    display: flex;
    flex-wrap: wrap;
    color: #005fcc;
    font-size: 1rem;
    margin-top: 10px;
}

/*Footer*/

footer {
    background-color: #042346;
    color: white;
    display: block;
    text-align: center;
    padding: 1rem;
    font-size: clamp(0.4rem, 2.5vw, 1rem);
    position: relative;
    bottom: 0;
    z-index: 1;
    width: 100%;
}

/* === Animations === */
@keyframes fadeIn {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideIn {
    0% {
        opacity: 0;
        transform: translateY(-60px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Desktop: show instantly on hover */
@media (min-width: 769px) {
    .dropdown:hover .dropdown-content {
        max-height: 400px;
        max-width: 650px;
        opacity: 1;
    }
}

/* === Mobile Styles === */
@media (max-width: 768px) {
    .nav-links {
        position: absolute;
        right: 0;
        top: 70px;
        background-color: #f0f4ff;
        flex-direction: column;
        align-items: center;
        width: 70%;
        height: 93vh;
        border-radius: 20px 0 0 20px;
        transform: translateX(100%);
        transition: transform 0.4s ease-in;
        padding-top: 60px;
        z-index: 999;
    }

    .nav-links li {
        color: #1d1d1d;
        font-size: 2vh;
    }   
    .nav-links.nav-active {
        transform: translateX(0);
    }

    .burger {
        display: flex;
        padding: 5px;
        border-radius: 5px;
        background-color: rgba(255, 255, 255, 0.267);
    }

    /* .gallery-item img {
        filter: none;
    }

    .gallery-item:hover img {
        transform: scale(1) rotate(0deg);
    } */
    .gallery .container .frame{
       flex-direction: column;
       gap: 50px;
    }

    .gallery .container .frame .pic{
       width: 100%;
    }

    .gallery .container .frame .detail{
       width: 100%;
          gap: 3vh;
       /* text-align: center; */
    }

    .gallery .container .frame .detail h2{
       font-size: 5vw; 
    }

    .gallery .container .frame .detail p{
         font-size: 3.5vw;
    }

    .gallery .container .frame .detail p>span{
         font-size: 4vw;
    }

    .gallery .container .frame .btn{
        font-size: 3.7vw;
        width: 150px;
        font-weight: 600;
    }

    .gallery .container .frame.right .pic{
       order: 1;
    }

    .gallery .container .frame.right .detail{
       order: 2;
    }

    .dropdown {
        width: 100%;
        text-align: center;
        /* display: none; */
    }

    .dropdown-content {
        position: static;
        box-shadow: none;
        background-color: transparent;
        /* display: block; */
    }

    .dropdown.active .dropdown-content {
        max-height: 500px;
        opacity: 1;
    }

    .dropdown-content a {
        padding: 10px;
        background-color: #f9f9f9;
        color: #333;
    }

    section.contactus {
        height: 100%;
        padding-bottom: 2px;
    }

    section#contact h2 {
        font-size: 1.7rem;
    }

    #contactfrom {
        padding: 0;
    }

    form {
        padding: 0 10px;
    }

    input,
    textarea {
        font-size: 0.95rem;
    }

    button[type="submit"] {
        font-size: 0.95rem;
    }

    .container {
        height: 100%;
        display: flex;
        flex-direction: column;
        padding-bottom: 10px;
    }

    span ion-icon {
        height: 30px;
    }

    span {
        width: 25px;
        height: 25px;
    }

    .Form {
        order: 1;
    }

    .info-map-wrapper {
        display: flex;
        flex-direction: column;
        gap: 10px;
        order: 2;
    }

    .sci .icon:hover {
        opacity: 1;
        color: #e7e7e7;
        font-size: 1.3em;
    }

    span {
        pointer-events: none;
    }
    .infobox .em {
        font-size: 3vw;
    }

    .infobox .adrs {
        font-size: 3.4vw;
    }

    .infobox .no {
        font-size: 3.4vw;
    }
    .info .infobox div>span{
        font-size: 5vw;
    }
}
@media (max-width: 1024px) {
    #cur{ 
        display: none;
    }
}

@media (max-width: 1070px) {
    .my {
        display: none;
    }

    .about {
        align-items: center;
        justify-content: center;
        padding: 6vh 0 6vh 0;
    }

    .about-text {
        text-align: center;
        max-width: 90vw;
    }

    .about h2 {
        margin-left: 0;
        font-size: 7vw;
    }

    .about p {
        font-size: 4vw;
    }
    .cursor{ 
        display: none;
    }
}

@media (max-width: 480px) {
    section#contact {
        padding: 3rem 1rem;
    }

    form {
        padding: 1rem;
    }

    section#contact h2 {
        font-size: 1.5rem;
    }
     .cursor{ 
        display: none;
    }
}