* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #ff6b6b;
    --secondary: #ffd93d;
    --accent: #ff8e53;
    --dark: #2c3e50;
    --light: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo-img {
    width: 40px;       /* size apne hisaab se change kar sakte ho */
    height: 40px;
    border-radius: 50%; /* circle banane ke liye */
    object-fit: cover;  /* image crop ho kar bhi achchi dikhe */
}
.brand {
  display: flex;
  align-items: center;
  gap: 28px;          /* text aur logo ke beech distance */
}



.brand-logo {
  height: 48px;      /* zarurat ke hisaab se size change karo */
  width: auto;
}

********
.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
}

.nav-link:hover, .nav-link.active {
    color: var(--primary);
    background: rgba(255,107,107,0.1);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
    padding: 0.5rem;
}

.bar {
    width: 25px;
    height: 3px;
    background: var(--dark);
    border-radius: 2px;
    transition: 0.3s;
}


/* HERO */
.hero {
    height: 100vh;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding: 2rem;
}

.hero h1 {
    font-size: clamp(3rem, 10vw, 6rem);
    font-weight: 800;
    margin-bottom: 1rem;
    /*yaha se*/
          /* Gradient with yellow added */
      background: linear-gradient(
        -45deg,
        #ff7b00,   /* orange */
        #ff006e,   /* pink */
        #ffd60a,   /* bright yellow */
        #8338ec,   /* purple */
        #3a86ff,   /* blue */
        #ffbe0b,   /* soft yellow */
        #ff7b00    /* back to orange */
      );
      background-size: 300% 300%;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;

      animation: gradientMove 5s ease-in-out infinite;
    }

    @keyframes gradientMove {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
}

.hero h1 span {
    background: linear-gradient(45deg, white, var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
          /* Gradient with yellow added */
      background: linear-gradient(
        -45deg,
        #ff7b00,   /* orange */
        #ff006e,   /* pink */
        #ffd60a,   /* bright yellow */
        #8338ec,   /* purple */
        #3a86ff,   /* blue */
        #ffbe0b,   /* soft yellow */
        #ff7b00    /* back to orange */
      );
      background-size: 300% 300%;
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;

      animation: gradientMove 5s ease-in-out infinite;
    }

    @keyframes gradientMove {
      0%   { background-position: 0% 50%; }
      50%  { background-position: 100% 50%; }
      100% { background-position: 0% 50%; }
}

.hero p {
    font-size: clamp(1.1rem, 4vw, 1.5rem);
    margin-bottom: 3rem;
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* BUTTONS */
.btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
    box-shadow: 0 10px 30px rgba(255,107,107,0.4);
}

.btn-primary:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(255,107,107,0.6);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: white;
    color: var(--primary);
}

.btn-accent {
    background: linear-gradient(45deg, var(--accent), var(--secondary));
    color: white;
    box-shadow: 0 10px 30px rgba(255,142,83,0.4);
}

.btn-sm { padding: 0.8rem 1.5rem; font-size: 1rem; }
.full-width { width: 100%; }

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* SECTIONS */
section { padding: 5rem 0; }
h2 {
    font-size: clamp(2rem, 6vw, 3.5rem);
    text-align: center;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

}

/* FEATURED */
.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.featured-card {
    background: white;
    padding: 2.5rem 2rem;
    text-align: center;
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.featured-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.15);
}

.card-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.featured-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

/* PRODUCTS */
.products-section { background: var(--light); }
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.product-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.4s ease;
}

.product-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.product-image {
    height: 250px;
    position: relative;
    overflow: hidden;
}

.chocolate-bg { background: linear-gradient(45deg, #8B4513, #D2691E); }
.vanilla-bg { background: linear-gradient(45deg, #FFF8DC, #F0E68C); }

.product-info {
    padding: 2rem;
    text-align: center;
}

.product-info h3 {
    font-size: 1.6rem;
    margin-bottom: 0.5rem;
}

.product-info p {
    color: #666;
    margin-bottom: 1.5rem;
}

/* ORDER FORM */
.order-section {
    background: linear-gradient(135deg, var(--light), white);
}

.order-form {
    max-width: 600px;
    margin: 3rem auto 0;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.order-form input,
.order-form textarea {
    padding: 1.2rem 1.5rem;
    border: 2px solid #e9ecef;
    border-radius: 15px;
    font-size: 16px;
    font-family: inherit;
    transition: all 0.3s ease;
}

.order-form input:focus,
.order-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(255,107,107,0.1);
}

/* PAGE HERO */
.hero {
    background: linear-gradient(135deg, #000000 0%, #764ba2 100%);
    color: white;
    padding: 8rem 0;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero-title span {
    background: linear-gradient(45deg, #ff6b6b, #ffd93d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.page-hero {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    padding: 8rem 0 6rem;
    text-align: center;
}

.page-hero h1 {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1rem;
}

/* BACK HOME */
.back-home {
    padding: 3rem 0;
    text-align: center;
    background: var(--light);
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .menu-toggle { display: flex; }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(255,255,255,0.98);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        transition: 0.4s;
        backdrop-filter: blur(20px);
    }
    
    .nav-menu.active { left: 0; }
    
    .menu-toggle.active .bar:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -6px);
    }
    
    .hero-buttons { flex-direction: column; align-items: center; }
    .featured-grid { grid-template-columns: 1fr; }
    .products-grid { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
    .container { padding: 0 1rem; }
    .nav-container { padding: 0 1rem; }
}
/*css image protection*/
/* style.css me images ke liye */
img {
    pointer-events: none;
    user-select: none;
    -webkit-user-drag: none;
    -khtml-user-drag: none;
    -moz-user-drag: none;
    -o-user-drag: none;
}

/* Text select disable */
body {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
