body {
    font-family: 'Playfair Display', serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    color: #333;
}

header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2); 
    padding: 10px 0;
    z-index: 1000;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

nav .logo img {
    height: 80px; 
}

nav ul {
    list-style: none;
    display: flex;
    margin: 0;
    padding: 0;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    text-decoration: none;
    color: white; 
    font-weight: bold;
}

#hero {
    background: url('Samosa.jpg') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    text-align: center;
}

.hero-text h1 {
    font-size: 4em;
    margin: 0;
}

.hero-text .btn {
    display: inline-block;
    padding: 20px 30px;
    background: transparent; 
    color: white; 
    border: 2px solid white; 
    text-decoration: none;
    margin-top: 42px;
    font-size: 1.2em;
    transition: background 0.3s, color 0.3s; 
}

section {
    padding: 60px 20px;
    text-align: center;
}

section h2 {
    font-size: 2.5em;
    margin-bottom: 20px;
}

#about .content {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.5em;
}

#break {
    width: 100%;
    height: 700px; 
    overflow: hidden;
    position: relative;
}

#break img {
    width: 100%;
    height: 100%;
    object-fit: cover; 
}



#gallery .gallery {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

#gallery .gallery img {
    width: 200px;
    height: 200px;
    object-fit: cover;
}

#inquiry .contact-info {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.5em;
}

.map {
    max-width: 100%;
    margin: 20px auto;
}

.map iframe {
    width: 100%;
    height: 450px;
    border: 0;
    margin-top: 60px;
}

footer {
    background: #333;
    color: white;
    padding: 10px 0;
    text-align: center;
}

@media (max-width: 768px) {
    .hero-text h1 {
        font-size: 2.5em;
    }
    
    .hero-text .btn {
        font-size: 1em;
    }
    
    #gallery .gallery img {
        width: 100%;
        height: auto;
    }
}

.hero-text .subtitle {
    font-size: 1.5em; 
    margin-top: 10px; 
    color: white; 
}

html, body {
    overflow-x: hidden;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    padding: 0;
}

