/* ---- Background Styling (Purana Background Wapas) ---- */
body {
    background: rgb(253, 243, 230);
    background-image: url("data:image/svg+xml,%3C!-- svg: first layer --%3E%3Csvg viewBox='0 0 250 250' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='4' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
    font-family: "Montserrat", sans-serif;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ---- Logo Section ---- */
.logo-container {
    width: 60%;
    margin: 3% auto;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* ---- Logo Glow Effect (Only on Text) ---- */
.logo-container img {
    max-width: 100%;
    height: auto;
    transition: filter 1s ease-in-out, transform 1s ease-in-out;
}

/* Logo Hover Effect - Premium Glow on Text */
.logo-container:hover img {
    filter: drop-shadow(0px 0px 30px #543A14); /* Golden Text Glow */
    transform: scale(1.03);
}

/* ---- Grid Gallery (2-Row Layout) ---- */
.mainbox {
    display: grid;
    grid-template-columns: 1fr 1fr; /* 2 columns */
    gap: 15px;
    width: 80%;
    margin: auto;
    padding: 20px 0;
}

/* ---- Image Styling ---- */
.mainbox a {
    border-radius: 12px; /* Rounded corners */
    overflow: hidden;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* ---- Image Inside Zoom Effect on Hover ---- */
.mainbox a img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.4s ease-in-out;
}

/* ---- Hover Effects ---- */
.mainbox a:hover {
    transform: scale(1.03);
    box-shadow: 0px 12px 30px rgba(0, 0, 0, 0.2);
}

.mainbox a:hover img {
    transform: scale(1.15); /* Andar se zoom effect */
}

/* ---- Footer Section ---- */
footer {
    text-align: center;
    margin: 40px 0;
}

.foot {
    font-weight: bold;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.foot a {
    color: black;
    text-decoration: none;
    font-size: 16px;
}

.foot img {
    width: 30px;
    height: 30px;
    vertical-align: middle;
}

/* ---- Responsive Design (Mobile Fix) ---- */
@media (max-width: 768px) {
    .logo-container {
        width: 80%;
    }

    .mainbox {
        grid-template-columns: 1fr; /* Mobile me ek row */
        width: 90%;
        gap: 10px;
    }

    .foot {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
}

/* Info Section */
.info-container {
    max-width: 700px;
    padding: 35px;
    background: #754E1A ; /* Dark transparent background */
    border-radius: 10px;
    box-shadow: 0px 5px 20px rgba(33, 4, 4, 0.566);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.info-container:hover {
    transform: translateY(-3px); 
    box-shadow: 0px 8px 25px rgba(255, 255, 255, 0.2);
}

/* Heading Styling */
.info-container h1 {
    font-size: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: #dfc12bfe;
}

/* Paragraph Styling */
.info-container p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #e0e0e0;
    font-weight: 300;
    margin-bottom: 15px;
}

/* Links */
.info-container a {
    display: inline-block;
    font-size: 1rem;
    font-weight: 500;
    color: #f8d210;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 6px;
    border: 1px solid rgba(255, 215, 0, 0.5);
    transition: all 0.3s ease-in-out;
}

.info-container a:hover {
    background: #f8d210;
    color: #000;
    box-shadow: 0px 3px 15px rgba(255, 215, 0, 0.4);
    transform: scale(1.05);
}
/* Center Instagram Icon in Contact Page */
/* Center Instagram Icon and Mail Link on Contact Page (Mobile View) */
.contact {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    gap: 10px;
    flex-wrap: wrap;
}

.foot a.mail-link {
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    margin-bottom: 10px;
}

.foot img {
    display: block;
    margin: 0 auto; /* Ensures icon is centered */
}

/* Mobile View Adjustments */
@media (max-width: 768px) {
    .foot {
        flex-direction: column;
    }

    .foot a.mail-link {
        margin-bottom: 15px; /* Adds space between mail link and Instagram icon */
    }
}

