/* 
    Punjabi Dhaba Pattaya - Core Styles
    Developed with Premium Design Principles
*/

:root {
    --primary: #FFD700; /* Vibrant Yellow from Sign */
    --secondary: #000000; /* Deep Black for Text */
    --accent: #FF9933; /* Saffron/Orange from Flag */
    --india-green: #138808; /* India Green from Flag */
    --bg-light: #ffffff; 
    --text-dark: #111111;
    --text-light: #f8f9fa;
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.3s ease;
    --shadow: 0 10px 30px rgba(0,0,0,0.1);
    --font-heading: 'Outfit', sans-serif; /* Cleaner, bolder look */
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--accent);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-fast);
}

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: var(--transition-fast);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--secondary);
    border: 2px solid var(--primary);
}

.btn-primary:hover {
    background: transparent;
    color: var(--primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(255,215,0,0.2);
}

.btn-secondary {
    background: var(--secondary);
    color: #ffffff;
    border: 2px solid var(--secondary);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--secondary);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

section {
    padding: 100px 0;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.section-title h2::after {
    content: '';
    width: 60px;
    height: 3px;
    background: var(--secondary);
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
}

.section-title p {
    color: #777;
    font-style: italic;
}

/* Animations */
[data-aos] {
    opacity: 0;
    transition: transform 1s, opacity 1s;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos].aos-animate {
    opacity: 1;
    transform: translate(0);
}

/* Responsive Grid */
.grid {
    display: grid;
    grid-template-columns: 1fr; /* Default to single column for mobile */
    gap: 20px;
}

@media (min-width: 768px) {
    .grid-2 { grid-template-columns: repeat(2, 1fr); }
    .grid-3 { grid-template-columns: repeat(3, 1fr); }
    .grid-4 { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 767px) {
    .section-title h2 { font-size: 2rem; }
    section { padding: 50px 0; }
    .hero-content h1 { font-size: 2.5rem !important; }
    .hero-content p { font-size: 1.1rem !important; margin-bottom: 25px; }
    .grid { gap: 15px; }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 2rem !important; }
    .section-title h2 { font-size: 1.8rem; }
}

/* Section Styles from Home Page */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-content h1 {
    font-size: 5rem;
    color: white;
    margin-bottom: 20px;
}

.hero-content h1 span {
    color: var(--secondary);
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 40px;
}

.hero-btns .btn {
    margin: 10px;
}

.img-responsive {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.area-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    text-align: center;
}

.area-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.area-card h3 {
    padding: 20px;
}

.area-card:hover img {
    transform: scale(1.1);
}

.menu-item {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    text-align: center;
    transition: var(--transition-fast);
    border-bottom: 4px solid transparent;
}

.menu-item:hover {
    transform: translateY(-10px);
    border-bottom: 4px solid var(--primary);
}

.menu-item img {
    width: 100%;
    height: 200px;
    border-radius: 10px;
    object-fit: cover;
    margin-bottom: 15px;
}

.menu-item h4 {
    margin-bottom: 10px;
}

.menu-item .price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.2rem;
    margin-top: 10px;
}

.feature-box {
    text-align: center;
    padding: 40px;
    background: var(--bg-light);
    border-radius: 10px;
    border: 1px solid #eee;
}

.feature-box i {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 10px;
}

@media (max-width: 575px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }
}

.gallery-item {
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.1) rotate(2deg);
    filter: brightness(0.8);
}

.review-card {
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
    position: relative;
}

.review-card .stars {
    color: var(--secondary);
    margin-bottom: 15px;
}

.review-card p {
    font-style: italic;
    margin-bottom: 20px;
}

.contact-form form input,
.contact-form form textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-family: inherit;
}

.contact-form form input:focus,
.contact-form form textarea:focus {
    border-color: var(--primary);
    outline: none;
}

.chef-special {
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.unsplash.com/photo-1625398407796-82650a8c135f?auto=format&fit=crop&q=80&w=1600');
    background-attachment: fixed;
    background-size: cover;
    color: white;
    text-align: center;
    padding: 120px 0;
}

.special-title {
    color: var(--secondary) !important;
    font-size: 3rem;
    margin-bottom: 20px;
}

.special-desc {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.2rem;
    font-style: italic;
}

.special-stats .count {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--secondary);
}

.stat-item p {
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    text-align: center;
    line-height: 50px;
    cursor: pointer;
    z-index: 1000;
    display: none;
    box-shadow: var(--shadow);
    transition: var(--transition-fast);
}

.scroll-top:hover {
    background: var(--secondary);
    color: var(--accent);
    transform: translateY(-5px);
}

.text-center { text-align: center; }

@media (max-width: 991px) {
    .hero-content h1 { font-size: 3.5rem; }
}
