/* Import fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sree+Krushnadevaraya&display=swap');

/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    background: #FFFEFE;
    min-height: 100vh;
}

/* Header styles */
.fonblack {
    background-color: black;
    width: 100%;
    height: 6rem;
    border-radius: 0 0 1rem 1rem;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.fonblacktx {
    color: #F88647;
    font-size: 2.25rem;
    font-weight: 600;
}

.burger {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    cursor: pointer;
}

.stik1, .stik2 {
    width: 2.3rem;
    height: 0.25rem;
    border-radius: 2rem;
    background: #F88647;
    transition: transform 0.3s ease;
}

/* Navigation buttons */
.buttonblock {
    padding: 1rem;
    width: 100%;
    overflow-x: auto;
    display: flex;
    gap: 0.75rem;
    scrollbar-width: none;
}

.buttonblock::-webkit-scrollbar {
    display: none;
}

.button1 {
    min-width: 6rem;
    height: 3rem;
    border-radius: 1.25rem;
    border: 1px solid #ccc;
    background: white;
    font-family: 'Sree Krushnadevaraya', serif;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.button1:hover {
    background: #F88647;
    color: white;
    border-color: #F88647;
}

/* Content sections */
.greyback, .greyback2, .greyback3, .greyback4 {
    width: calc(100% - 2rem);
    margin: 1rem;
    padding: 1.5rem;
    border-radius: 1.5rem;
    background: #D9D9D9;
}

.eattx, .drinktx, .hotbreadtx, .caketx {
    font-size: 1.5rem;
    font-family: 'Sree Krushnadevaraya', serif;
    margin-bottom: 1.5rem;
}

/* Grid layout for items */
.block1, .block2, .block3, .block4 {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
    justify-content: center;
}

/* Item card styles */
[class^="gblock"] {
    background: #B1B1B1;
    border-radius: 1rem;
    padding: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    transition: transform 0.3s ease;
}

[class^="gblock"]:hover {
    transform: translateY(-0.25rem);
}

[class^="image"] {
    width: 100%;
    height: 120px;
    border-radius: 0.75rem;
    object-fit: cover;
}

[class^="name"] {
    background: #D9D9D9;
    border-radius: 0.75rem;
    padding: 0.5rem;
}

[class^="nametx"] {
    font-size: 0.875rem;
    font-weight: 500;
    text-align: center;
}

[class^="ves"] {
    background: #D9D9D9;
    border-radius: 0.75rem;
    padding: 0.25rem 0.5rem;
    width: fit-content;
}

[class^="vestx"] {
    font-size: 0.75rem;
    color: #444;
}

/* Footer styles */
.footer_col {
    background: #000;
    color: white;
    padding: 2rem;
    margin-top: 2rem;
}

.footer_col h2 {
    color: #F88647;
    margin-bottom: 1rem;
}

.footer_col p {
    line-height: 1.6;
}

/* Back to top button */
a[href="#top"] {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: #F88647;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 2rem;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

a[href="#top"]:hover {
    opacity: 1;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .fonblacktx {
        font-size: 1.75rem;
    }
    
    .button1 {
        min-width: 5rem;
    }
    
    [class^="gblock"] {
        margin: 0 auto;
        max-width: 200px;
    }
}