body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #fff8f0;
    color: #222;
}

/* NAVBAR */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #ff7a00;
    padding: 15px 30px;
}

nav h1 {
    margin: 0;
    color: white;
    font-size: 28px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
    margin: 0;
    padding: 0;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

nav a:hover {
    text-decoration: underline;
}

/* HERO */
.hero {
    height: 430px;
    background-image: url("images/india-hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero-content {
    padding: 35px;
    border-radius: 14px;
    text-shadow: 0 6px 20px rgba(0,0,0,0.4);
}


.hero h2 {
    font-size: 78px;
    color: white;
    margin: 0;
    font-weight: 900;
    letter-spacing: 5px;
    text-shadow:
        0 4px 12px rgba(0,0,0,0.45),
        0 8px 24px rgba(0,0,0,0.35);
}
.hero-content {
    backdrop-filter: blur(4px);
}

.hero p {
    font-size: 22px;
    margin-top: 15px;
    color: white;
    text-shadow: 0 4px 10px rgba(0,0,0,0.4);
}

/* HOMEPAGE CARDS */
.categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
    padding: 40px;
}

.card {
    background-color: white;
    border-radius: 14px;
    overflow: hidden;
    text-align: center;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
    transition: 0.3s;
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: 0 14px 30px rgba(0,0,0,0.18);
}

.card a {
    color: #222;
    text-decoration: none;
}

.card img {
    width: 100%;
    height: 230px;
    object-fit: cover;
}

.card h3 {
    color: #ff7a00;
    font-size: 24px;
    padding: 15px;
}

/* PAGE HEADER */
.page-header {
    text-align: center;
    padding: 55px 20px 25px;
}

.page-header h2 {
    font-size: 46px;
    color: #ff7a00;
    margin-bottom: 10px;
}

.page-header p {
    max-width: 750px;
    margin: 0 auto;
    font-size: 18px;
    color: #444;
}

/* CONTENT PAGES */
.content-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 30px 60px;
}

.content-card {
    display: flex;
    align-items: center;
    gap: 30px;
    background-color: white;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 30px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.content-card img {
    width: 320px;
    height: 220px;
    object-fit: cover;
}

.content-text {
    padding: 20px;
}

.content-text h3 {
    color: #ff7a00;
    font-size: 30px;
    margin-top: 0;
}

.content-text p {
    line-height: 1.7;
    color: #333;
}

.content-text a {
    color: #ff7a00;
    text-decoration: none;
    font-weight: bold;
}

.content-text a:hover {
    text-decoration: underline;
}

.tag {
    display: inline-block;
    background-color: #fff0df;
    color: #ff7a00;
    padding: 8px 14px;
    border-radius: 20px;
    font-size: 14px;
}

/* CONTACT */
.contact-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 20px 60px;
}

.contact-box {
    background-color: white;
    padding: 30px;
    border-radius: 14px;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.contact-box form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-box input,
.contact-box textarea {
    padding: 12px;
    border-radius: 8px;
    border: 1px solid #ddd;
    font-size: 15px;
}

.contact-box button {
    padding: 12px;
    border: none;
    border-radius: 8px;
    background-color: #ff7a00;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.contact-box button:hover {
    background-color: #e56d00;
}

.contact-info {
    text-align: center;
    margin-top: 30px;
    color: #444;
}

/* FOOTER */
footer {
    text-align: center;
    padding: 25px;
    background-color: #ff7a00;
    color: white;
    margin-top: 40px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        gap: 15px;
    }

    nav ul {
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero h2 {
        font-size: 42px;
    }

    .content-card {
        flex-direction: column;
    }

    .content-card img {
        width: 100%;
        height: 220px;
    }
}

nav a {
    font-size: 15px;
}

.hero {
    border-radius: 0 0 10px 10px;
}

.hero-text {
    box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}


.food-grid-page {
    padding: 50px 40px 80px;
}

.food-intro {
    text-align: center;
    margin-bottom: 35px;
}

.food-intro h2 {
    font-size: 48px;
    color: #ff7a00;
    margin-bottom: 10px;
}

.food-intro p {
    color: #444;
    font-size: 18px;
}

.dish-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.dish-card {
    background-color: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    transition: 0.3s ease;
}

.dish-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        0 18px 40px rgba(0,0,0,0.18),
        0 0 18px rgba(255,122,0,0.25);
}

.dish-card img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.dish-content {
    padding: 22px;
}

.dish-content span {
    display: inline-block;
    background-color: #fff0df;
    color: #ff7a00;
    padding: 7px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: bold;
}

.dish-content h3 {
    font-size: 26px;
    color: #222;
    margin: 15px 0 10px;
}

.dish-content p {
    color: #444;
    line-height: 1.6;
}

@media (max-width: 900px) {
    .dish-grid {
        grid-template-columns: 1fr;
    }
}

.dish-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.dish-card img {
    transition: 0.4s ease;
}

.dish-card:hover img {
    transform: scale(1.05);
}

.dish-card {
    overflow: hidden;
}


.contact-page {
    padding: 60px 20px 80px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact-header {
    text-align: center;
    margin-bottom: 35px;
}

.contact-header h2 {
    font-size: 52px;
    color: #ff7a00;
    margin-bottom: 10px;
}

.contact-header p {
    color: #555;
    font-size: 18px;
}

.contact-box {
    width: 100%;
    max-width: 650px;
    background-color: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.contact-box form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.contact-box input,
.contact-box textarea {
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    font-size: 15px;
    outline: none;
}

.contact-box input:focus,
.contact-box textarea:focus {
    border-color: #ff7a00;
}

.contact-box button {
    background-color: #ff7a00;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.contact-box button:hover {
    background-color: #e56d00;
}

.newsletter-box {
    margin-top: 45px;
    background-color: white;
    padding: 30px;
    border-radius: 18px;
    width: 100%;
    max-width: 650px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.newsletter-box h3 {
    color: #ff7a00;
    font-size: 30px;
    margin-bottom: 10px;
}

.newsletter-box p {
    color: #555;
    margin-bottom: 20px;
}

.newsletter-form {
    display: flex;
    gap: 12px;
}

.newsletter-form input {
    flex: 1;
    padding: 14px;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.newsletter-form button {
    background-color: #ff7a00;
    color: white;
    border: none;
    padding: 14px 24px;
    border-radius: 10px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s ease;
}

.newsletter-form button:hover {
    background-color: #e56d00;
}

.contact-info {
    text-align: center;
    margin-top: 45px;
    color: #444;
}

.contact-info h3 {
    color: #ff7a00;
    font-size: 30px;
    margin-bottom: 15px;
}

@media (max-width: 768px) {

    .newsletter-form {
        flex-direction: column;
    }

}html, body {
    height: 100%;
}

body {
    display: flex;
    flex-direction: column;
}

main {
    flex: 1;
}

.india-info {
    padding: 20px 40px 60px;
    display: flex;
    justify-content: center;
}

.info-box {
    max-width: 900px;
    background-color: white;
    padding: 35px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.info-box h2 {
    color: #ff7a00;
    font-size: 42px;
    margin-bottom: 20px;
    animation: slideGlow 2s ease;
}

.info-box p {
    color: #444;
    line-height: 1.8;
    font-size: 17px;
}

.culture-hero {
    background-image: url("images/culture.jpg");
    background-size: cover;
    background-position: center;
    padding: 120px 20px;
    text-align: center;
    color: white;
    position: relative;
}

.culture-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.culture-hero h2,
.culture-hero p {
    position: relative;
    z-index: 1;
}

.culture-hero h2 {
    font-size: 58px;
    margin-bottom: 10px;
}

.culture-hero p {
    font-size: 20px;
}

.culture-page {
    max-width: 900px;
    margin: 50px auto;
    padding: 0 25px;
}

.culture-section {
    background-color: white;
    padding: 30px;
    border-left: 6px solid #ff7a00;
    margin-bottom: 25px;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.culture-section h3 {
    color: #ff7a00;
    font-size: 30px;
    margin-top: 0;
}

.culture-section p {
    color: #444;
    line-height: 1.8;
    font-size: 17px;
}

.highlight {
    background-color: #fff0df;
}

.culture-fact-box {
    background-color: #ff7a00;
    color: white;
    padding: 35px;
    border-radius: 16px;
    text-align: center;
}

.culture-fact-box h3 {
    font-size: 32px;
    margin-top: 0;
}

.culture-fact-box p {
    line-height: 1.8;
    font-size: 17px;
}




.culture-row {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
}

.culture-row img {
    width: 320px;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.reverse {
    flex-direction: row-reverse;
}

@media (max-width: 768px) {

    .culture-row,
    .reverse {
        flex-direction: column;
    }

    .culture-row img {
        width: 100%;
        height: 240px;
    }

}


.places-header {
    text-align: center;
    padding: 60px 20px 30px;
}

.places-header h2 {
    font-size: 50px;
    color: #ff7a00;
    margin-bottom: 10px;
}

.places-header p {
    color: #555;
    font-size: 18px;
}

.places-page {
    max-width: 1100px;
    margin: 0 auto;
    padding: 30px 30px 70px;
}

.place-feature {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    background-color: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
    margin-bottom: 35px;
}

.place-feature img {
    width: 100%;
    height: 420px;
    object-fit: cover;
}

.place-info {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.place-info span {
    color: #ff7a00;
    font-weight: bold;
    background-color: #fff0df;
    padding: 8px 14px;
    border-radius: 20px;
    width: fit-content;
}

.place-info h3 {
    font-size: 42px;
    color: #222;
    margin: 20px 0 10px;
}

.place-info p {
    color: #444;
    line-height: 1.8;
    font-size: 17px;
}

.place-small-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.place-mini-card {
    background-color: white;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    transition: 0.3s ease;
}

.place-mini-card:hover {
    transform: translateY(-8px);
}

.place-mini-card img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.place-mini-card h3 {
    color: #ff7a00;
    font-size: 28px;
    margin: 20px 20px 10px;
}

.place-mini-card p {
    color: #444;
    line-height: 1.7;
    margin: 0 20px 25px;
}

@media (max-width: 768px) {
    .place-feature {
        grid-template-columns: 1fr;
    }

    .place-feature img {
        height: 280px;
    }

    .place-small-grid {
        grid-template-columns: 1fr;
    }

    .places-header h2 {
        font-size: 38px;
    }
}

.hero h2 {
    animation: floatText 3s ease-in-out infinite;
}

@keyframes floatText {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-4px);
    }

    100% {
        transform: translateY(0px);
    }
}


@keyframes slideGlow {

    0% {
        opacity: 0;
        transform: translateY(25px);
        letter-spacing: 10px;
    }

    100% {
        opacity: 1;
        transform: translateY(0);
        letter-spacing: 0;
    }

}


.dish-card {
    position: relative;
}

.dish-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.25),
        transparent 40%
    );
    opacity: 0;
    transition: 0.3s ease;
}

.dish-card:hover::before {
    opacity: 1;
}


.dish-card:nth-child(2) {
    transform: translateY(15px);
}



.food-history {
    margin-top: 60px;
    display: flex;
    justify-content: center;
}

.history-box {
    background-color: white;
    max-width: 950px;
    padding: 40px;
    border-radius: 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
    border-top: 6px solid #ff7a00;
}

.history-box h2 {
    color: #ff7a00;
    font-size: 40px;
    margin-bottom: 20px;
    text-align: center;
}

.history-box p {
    color: #444;
    line-height: 1.9;
    font-size: 17px;
    margin-bottom: 18px;
}

.contact-page {
    position: relative;
    padding: 50px 20px 70px;
    overflow: hidden;
    background-color: #fff8f0;
}

.contact-page::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("images/pattern.png");
    background-size: 260px;
    background-repeat: repeat;
    opacity: 0.18;
    pointer-events: none;
    z-index: 0;
}

.contact-header,
.contact-box,
.newsletter-box,
.contact-info {
    position: relative;
    z-index: 1;
}

/* CONTACT PATTERN FIX */
.contact-page {
    position: relative !important;
    padding: 50px 20px 70px !important;
    overflow: hidden !important;
    background-color: #fff8f0 !important;
}

.contact-page::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    background-image: url("images/pattern.png") !important;
    background-size: 180px !important;
    background-repeat: repeat !important;
    opacity: 0.45 !important;
    z-index: 0 !important;
    pointer-events: none !important;
}

.contact-header,
.contact-box,
.newsletter-box,
.contact-info {
    position: relative !important;
    z-index: 2 !important;
}

.contact-box,
.newsletter-box {
    backdrop-filter: blur(6px);
    background-color: rgba(255,255,255,0.92);
}

/* FLOATING PAGE TITLES */
.food-intro h2,
.places-header h2,
.culture-hero h2 {
    animation: floatTitle 3s ease-in-out infinite;
    text-shadow:
        0 4px 12px rgba(255,122,0,0.25),
        0 0 20px rgba(255,122,0,0.18);
}

/* CONTACT TITLE */
.contact-header h2 {
    animation: floatTitle 3s ease-in-out infinite;
    color: #111;
    text-shadow:
        0 4px 10px rgba(0,0,0,0.25);
}
@keyframes floatTitle {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-5px);
    }

    100% {
        transform: translateY(0px);
    }
}