:root {
    --primary-color: #1A4297;
    --secondary-color:#000000;
    --text-color: #f9f9f9;
    --font-serif: 'Lobster', cursive;
    --font-sans: 'Old Sans', sans-serif;
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-sans);
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--secondary-color);
    letter-spacing: 1px;
}

.container {
    width: 80%;
    margin: 0 auto;
    padding: 80px 0;
}

header {
    position: relative;
    background-image: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url("img/background-img.jpg");
    background-size: cover;
    color: white;
    width: 100%;
    height: auto;
    min-height: 100dvh;
    text-align: center;
    overflow: visible;
}

nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    overflow: visible;

    background: transparent;
    padding: 15px 0;

    display: flex;
    justify-content: center;
    align-items: center;

    width: 100%;

    transition: background 0.5s ease;
}

nav ul {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
}

nav ul li {
    margin: 10px 25px;
}

nav ul a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
    letter-spacing: 1.5px;
}

nav ul a:hover {
    color: #e8e8e8;
}

.hero {
    padding-top: 18%;
    align-items: center;
    justify-content: center;
}

.hero img {
    width: 20%;
}

.hero p {
    font-size: 1em;
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 20px;
    letter-spacing: 4px;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.9);
}

.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 12px 30px;
    margin-left: 12px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: background-color 0.3s;
}

.cta-button:hover {
    background-color: #003d82;
}

.secondary-button {
    background-color: #ccc;
    color: var(--text-color);
}

.secondary-button:hover {
    background-color: #bbb;
}

h2 {
    font-family: 'Dancing Script', cursive;
    font-size: 3.5em;
    text-align: center;
    text-shadow: 5px 0px 0px rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    color: #2162be;
    font-family: var(--font-serif);
}

.about-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 70px;
    text-align: left;
}

.about-text-content {
    flex: 1;
}

.about-text-content h2 {
    text-align: left;
}

.about-text-content p {
    text-align: justify;
    text-justify: inter-word;
    line-height: 2.4;
}

.about-image-content {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.about-image-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .container {
        padding: 80px 0;
    }

    .container p{
        font-size: 0.7em;
    }

    h2 {
        font-size: 2.5em;
    }

    nav ul li a{
        font-size: 0.6em;
    }

    .hero {
        padding-top: 80%;
    }

    .hero img {
        width: 50%;
    }

    .hero p {
        font-size: 0.7em;
    }

    .cta-button {
        padding: 8px 16px !important; 
        
        font-size: 0.7rem !important; 
        
        width: auto !important; 
        min-width: 140px; 
        
        margin: 5px;.about-flex {
        flex-direction: column;
    }
    
    .about-image-content {
        justify-content: center;
    }
    }

    .about-flex {
        flex-direction: column;
    }
    
    .about-image-content {
        justify-content: center;
    }
}

.menu-section {
    background-color: #050505;
}

.menu-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.menu-img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.menu-img:hover {
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .menu-grid {
        grid-template-columns: 1fr;
    }
}

.contact-section {
    background-color: var(--secondary-color);
    text-align: center;
    padding: 80px 10%;
}

.contact-intro {
    margin-bottom: 40px;
    font-size: 1.1rem;
    color: var(--text-color);
}

.contact-grid {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.contact-card {
    background: var(--secondary-color);
    border: 2px solid #555;
    border-radius: 12px;
    padding: 30px;
    width: 280px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

.contact-card:hover {
    border-color: #1A4297;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-card h3 {
    color: #4d96ff;
    margin-bottom: 10px;
}

.address-info {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}

.address-line {
    margin-bottom: 10px;
}


@media (max-width: 600px) {
    .contact-card {
        width: 100%;
    }
}

.map-section {
    background-color: var(--secondary-color);
    padding: 60px 0;
}

.map-container-styled {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.map-container-styled iframe {
    width: 100%;
    height: 400px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

@media (max-width: 768px) {
    .map-section {
        padding: 40px 0;
    }
    .map-container-styled iframe {
        height: 300px;
    }
}

footer {
    padding: 40px 20px;
    text-align: center;
    background-color: #000000;
    border-top: 1px solid #ddd;
}

.footer-links {
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.footer-links span {
    display: inline-block;
    margin: 0 5px; 
    color: #f9f9f9;
}

.footer-social {
    margin-bottom: 20px;
}

.social-icon {
    width: 30px;
    height: auto;
    transition: opacity 0.3s;
}

.social-icon:hover {
    opacity: 0.7;
}

.copyright {
    font-size: 0.85rem;
    color: #777;
}

@media (max-width: 600px) {
    .footer-links span {
        display: block;
        margin: 10px 0;
        font-size: 0.7em;
    }

    .footer-container p {
        font-size: 0.6em;
    }
}

@media (max-width: 768px) {
    .container {
        width: 90%;
    }
    nav {
        flex-direction: column;
    }
    
    nav ul li {
        margin: 0 10px;
    }
    .hero h1 {
        font-size: 2em;
    }
    .price {
        position: static;
        display: block;
        margin-top: 10px;
    }
}