﻿/* ===== BODY AND FONT ===== */
body {
    margin: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color:orange;
}

/* ===== TOP HEADER ===== */
.top-header {
    background-color: #1e90ff;
    color: white;
    padding: 15px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    top: 0;
    width: 94%;
    z-index: 999;
    border: 3px solid gold;
    box-shadow: inset 0 0 0 3px silver, 0 0 12px rgba(255, 215, 0, 0.6);
}


    .top-header .logo {
        font-size: 24px;
        font-weight: bold;
    }

.search-box input {
    width: 100px;
    padding: 8px 15px;
    border-radius: 25px;
    border: none;
    outline: none;
}

/* ===== MENU BAR ===== */
.menu-bar {
    background-color: #f1f1f1;
    margin-top: 68px; /* header height */
    padding: 10px 0;
}

    .menu-bar ul {
        list-style: none;
        display: flex;
        justify-content: center;
        gap: 40px;
        margin: 0;
        padding: 0;
    }

    .menu-bar a {
        text-decoration: none;
        color: #333;
        font-weight: bold;
        font-size: 16px;
    }

/* ===== FEATURE ICONS ===== */
.features {
    margin: 20px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 35px;
    background-color:red;
}

.feature-item {
    background: white;
    width: 450px;
    padding: 25px;
    border-radius: 22px;
    box-shadow: 0 8px 18px rgba(0,0,0,0.1);
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
    margin-left:10px;
    margin-right:10px;
    background-color:darkmagenta;  border: red;
}

    .feature-item:hover {
        transform: scale(1.05);
    }

    .feature-item img {
        width: 138px;
        height: 138px;
        object-fit: cover;
    }

    .feature-item p {
        margin-top: 10px;
        font-weight: bold;
        font-size: 14px;
    }

/* ===== SECTIONS ===== */
.welcome, {
    padding: 80px 30px 30px 30px;
    max-width: 900px;
    margin: auto;
    text-align: center;

}


.services, .products, .contact {
    padding: 2px;
    max-width: 250px;
    margin: 4px;
}

h1, h2 {
    color: #1e90ff;
}

p, li {
    font-size: 15px;
    color: #555;
}


/* ===== LUXURY STYLE FOR FEATURE ITEMS ===== */
.feature-item {
    background-color:white; /* हल्का gradient */
    border-radius: 15px; /* गोल corner */
    box-shadow: 0 10px 25px rgba(0,0,0,0.15), 0 5px 10px rgba(0,0,0,0.08); /* soft shadow */
    padding: 20px;
    text-align: center;
    transition: transform 0.4s, box-shadow 0.4s;
    cursor: pointer;
    border: 5px solid gold;
}

    .feature-item:hover {
        transform: translateY(-8px) scale(1.05);
        box-shadow: 0 18px 35px rgba(0,0,0,0.22), 0 9px 15px rgba(0,0,0,0.12);
    }

    .feature-item img {
        width: 350px;
        height: 350px;
        object-fit: cover;
        border-radius: 12px;
        margin-bottom: 10px;
    }

    .feature-item p {
        font-weight: 600;
        color: #1e3c72;
        font-size: 15px;
    }

/* ===== LUXURY STYLE FOR SECTIONS ===== */
.welcome, .services, .products, .contact {
    border-radius: 20px;
    background: linear-gradient(150deg, #ffffff, #dde6f7);
    box-shadow: 0 12px 30px rgba(0,0,0,0.18), 0 6px 15px rgba(0,0,0,0.10);
    padding: 35px 30px;
    margin-bottom: 40px;
    transition: transform 0.5s, box-shadow 0.5s;
}

    .welcome:hover, .services:hover, .products:hover, .contact:hover {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(0,0,0,0.25), 0 10px 20px rgba(0,0,0,0.12);
    }

/* ===== BUTTON STYLE ===== */
button, .btn {
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    border: none;
    font-weight: bold;
    font-size: 14px;
    cursor: pointer;
    box-shadow: 0 6px 15px rgba(0,0,0,0.2);
    transition: transform 0.3s, box-shadow 0.3s;
}

    button:hover, .btn:hover {
        transform: translateY(-4px) scale(1.05);
        box-shadow: 0 12px 25px rgba(0,0,0,0.28);
    }

/* ===== MENU AND HEADER ===== */
.menu-bar, .top-header {
    box-shadow: 0 10px 15px rgba(0,0,0,0.1);
}
/* ===== Premium Luxury Double Border for Feature Images ===== */
.feature-item img {
    position: relative;
    border-radius: 25px; /* हल्का गोल आकार */
    padding: 5px; /* inner spacing */
    /* Outer golden border */
    border: 5px solid gold;
    /* Inner silver border using box-shadow trick */
    box-shadow: inset 0 0 0 5px silver, 0 0 25px rgba(255, 215, 0, 0.6); /* subtle outer glow */

    transition: transform 0.3s, box-shadow 0.3s;
   
}

    .feature-item img:hover {
        transform: scale(1.08); /* हल्का zoom effect */
        box-shadow: inset 0 0 0 5px silver, 0 0 25px rgba(255, 215, 0, 0.9); /* glowing on hover */
    }

.welcome-section {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    position: relative;
    gap: 20px; /* welcome text के चारों तरफ space */
}

.slider {
    width: 100%; /* left/right slider की width */
    height: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: background-image 1s ease-in-out;
    border-color:#5cd65c;
}

.welcome-text {
    text-align: center;
    color: #1e90ff;
    max-width:  400px;
}
/* ===== WELCOME LUXURY SECTION ===== */
.welcome-luxury {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin: 150px 0;
}

/* Center Welcome */
.welcome-center {
    text-align: center;
    padding: 20px 40px;
    max-width: 500px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    z-index: 2;
    position: relative;
}

/* Sliders */
.slider {
    width: 120px; /* adjustable width */
    height: 180px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}

    .slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 15px;
        border: 2px solid gold; /* luxury border */
        box-shadow: 0 4px 12px rgba(0,0,0,0.2);
        opacity: 0;
        position: absolute;
        top: 0;
        left: 0;
        transition: opacity 1s ease-in-out;
    }

        /* Initial visible image */
        .slider img.active {
            opacity: 1;
        }


    .small-slider img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        opacity: 0;
        transition: opacity 1s ease-in-out;
    }

        


/* new delite*/
/* ===== GRID ===== */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(2, 1fr));
    gap: 20px;
}

/* ===== CARD ===== */
.product-card {
    background: rgba(255,255,255,0.95);
    border-radius: 18px;
    padding: 15px;
    position: relative;
    overflow: hidden;
    /* GLASS + SHADOW */
    backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: all 0.4s ease;
}

    /* HOVER */
    .product-card:hover {
        transform: translateY(-12px) scale(1.05);
        box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    }



.product-card:hover .product-image {
    transform: scale(1.1);
}

/* ===== TITLE ===== */
.product-title {
    font-size: 17px;
    font-weight: bold;
    margin-top: 8px;
    color: #222;
}

/* CATEGORY */
.product-category {
    font-size: 12px;
    color: #888;
}

/* ===== PRICE BOX ===== */
.price-box {
    margin-top: 5px;
}

/* PRICE */
.product-price {
    font-size: 18px;
    font-weight: bold;
    color: #000;
}

/* MRP STYLE */
.product-mrp {
    font-size: 13px;
    color: #999;
    margin-left: 6px;
    position: relative;
}

    .product-mrp::after {
        content: "";
        position: absolute;
        left: 0;
        top: 50%;
        width: 100%;
        height: 2px;
        background: linear-gradient(90deg, red, orange);
        transform: rotate(-6deg);
    }

/* DISCOUNT BADGE */
.discount {
    background: linear-gradient(45deg, #28a745, #5cd65c);
    color: white;
    padding: 2px 7px;
    border-radius: 20px;
    font-size: 12px;
    margin-left: 5px;
}

/* ===== STOCK BADGE ===== */
.product-stock {
    font-size: 12px;
    margin-top: 5px;
}

/* ===== STATUS TAG ===== */
.product-status {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 11px;
    padding: 3px 8px;
    border-radius: 20px;
    color: white;
}

    .product-status.active {
        background: green;
    }

    .product-status.inactive {
        background: red;
    }

/* ===== BUTTON ===== */
.btn-book {
    margin-top: 8px;
    padding: 10px;
    width: 100%;
    border: none;
    border-radius: 25px;
    background: linear-gradient(135deg, #1e90ff, #00bfff);
    color: white;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

    .btn-book:hover {
        transform: scale(1.05);
        background: #007bff;
    }
/* PC (DESKTOP) */
.features {
    display: grid;
    grid-template-columns: repeat(4, 1fr); /* 👉 6 fix */
    gap: 25px;
    padding: 10px;
}

/* TABLET */
@media (max-width: 1024px) {
    .features {
        grid-template-columns: repeat(2, 1fr); /* 👉 2 */
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .features {
        grid-template-columns: repeat(2, 1fr); /* 👉 2 FIX */
    }
}
