/* ========= ROOT VARIABLES ========= */
:root {
    --bg-color: #5C1817;
    --dark-bg: #5C1817;

    --accent-color: #d85c5c;
    --divider-color: #320c0c;
    --text-color: #DEAE7C;
    --light-text: #DEAE7C;

    --transition-speed: 0.4s;
}

/* ========= GENERAL ========= */
body {
    margin: 0;
    background: var(--bg-color);
    color: var(--text-color);
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 500;
    font-style: normal;
    transition: background var(--transition-speed), color var(--transition-speed);
}

a {
    color: #f8caca;
}

.container {
    width: 90%;
    max-width: 900px;
    margin: auto;
    padding-bottom: 60px;
}

/* ========= PRELOADER ========= */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3b4b4;
    border-top-color: var(--accent-color);
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* ========= WHATSAPP FLOAT ========= */
.float:hover {
    transform: scale(1.10);
}

.float {
    position: fixed;
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    background-color: #25d366;
    color: #FFF;
    border-radius: 50px;
    text-align: center;
    font-size: 30px;
    box-shadow: 2px 2px 3px #999;
    z-index: 100;
}

.my-float {
    margin-top: 16px;
}

/* ========= Hero Section ========= */
.hero {
    text-align: center;
    margin: 40px 0;
}

.opening-text {
    color: #DEAE7C;
    font-weight: 600;
}

.hero-image-full {
    width: 100%;
    height: auto;
    display: block;
}

/* ========= Divider ========= */
.divider {
    border: none;
    border-top: 2px solid var(--divider-color);
    margin: 35px 0;
    opacity: 0.1;
}

/* ========= Info Header ========= */
.info-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.info-icon {
    font-size: 1.8rem;
    color: var(--accent-color);
}

.info-text a {
    font-size: 1.25rem;
    text-decoration: none;
    color: var(--text-color);
}

.landmark {
    opacity: 0.7;
    font-size: 0.9rem;
}

/* ========= Instagram Section (Icon) ========= */
.insta-section {
    text-align: center;
    margin-top: 20px;
}

.instagram-icon {
    font-size: 3rem;
    transition: transform 0.4s;
}

.instagram-icon:hover {
    transform: scale(1.2) rotate(5deg);
}

/* ========= Instagram Feed (Grid) ========= */
.instagram-feed {
    margin-top: 50px;
    text-align: center;
}

.feed-title {
    font-size: 1.6rem;
    font-family: "Roboto", sans-serif;
    margin-bottom: 15px;
    color: var(--text-color);
}

.insta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 15px;
    justify-items: center;
}

.instagram-media {
    margin: 0 auto !important;
}

/* ========= Footer ========= */
.footer {
    margin-top: 45px;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ========= Fade-in on scroll ========= */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

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

/* ========= Contact & Location Wrapper ========= */
.contact-location-wrapper {
    display: flex;
    gap: 40px;
    justify-content: space-between;
    align-items: flex-start;
    margin-top: 40px;
    width: 100%;
}

.location-container {
    flex: 1;
    width: 100%;
}

/* ========= Responsive ========= */
@media (max-width: 768px) {
    .contact-location-wrapper {
        flex-direction: column;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .hero-image {
        height: 200px;
    }
}

/* ========= Map ========= */
.map-container {
    width: 100%;
    aspect-ratio: 16 / 9;
    position: relative;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
    position: absolute;
    top: 0;
    left: 0;
}


.quicksand-light {
    font-family: "Quicksand", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'saman';
    /* Choose a descriptive name for your font */
    src: url('SAMAN___.ttf') format('truetype');
    /* Specify the path to your .ttf file */
    font-weight: normal;
    /* Optional: Define font weight if applicable */
    font-style: normal;
    /* Optional: Define font style if applicable */
}


.roboto-bb {
    font-family: "Roboto", sans-serif;
    font-optical-sizing: auto;
    font-weight: 300;
    font-style: normal;
    font-variation-settings:
        "wdth" 100;
}