/* Reset default margin and padding */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Custom Home Section */
.custom-home-section {
    position: relative;
    width: 100%;
    height: 60vh; /* Full viewport height */
    background: url('phu-yen-bg1.jpg') no-repeat center center/cover; /* Background image */
}

.home-phone-number {
    font-size: 24px; /* Adjust the font size as needed */
    color: white; /* Match the button color */
    text-decoration: none;
    display: inline-block;
    margin-top: 60px; /* Gap of 3 times the button height (assuming button height is 20px) */
}

.home-phone-number:hover {
    text-decoration: underline; /* Add hover effect if needed */
    color:orange;
}

.home-phone-number i {
    margin-right: 10px; /* Add space between the icon and the phone number */
}

/* Custom Overlay */
.custom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Translucent overlay */
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

/* Custom Content */
.custom-content {
    z-index: 1;
    max-width: 100%;
}
/* Logo Container */
.logo-container {
    margin-bottom: 20px; /* Space between logo and restaurant name */
}

.logo {
    width: 440px;
    max-width: 100%; /* Adjust as needed */
    height: auto;
}
/* Restaurant Info */
.restaurant-info {
    margin-bottom: 20px; /* Adjust as needed to create space between text and buttons */
}

/* Heading Styles */
.home-heading-style-1 h1 {
    color: white;
    font-family: 'Montserrat', sans-serif;
    font-size: 3em; /* Adjust the font size as needed */
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5); /* Text shadow added */
}

.home-heading-style-2 h1 {
    font-size: 55px;
    font-family: 'Satisfy', cursive;
    font-weight: 400;
    color: #fff;
}

/* Slogan */
.slogan {
    color: white;
    font-family: 'Roboto', sans-serif;
    font-size: 1.5em; /* Adjust the font size as needed */
    font-weight: 300;
    letter-spacing: 0.5px;
    margin: 0;
}

/* Buttons */
.buttons {
    margin-top: 20px; /* Adjust as needed to create space between text and buttons */
}

.button {
    background-color: #F06D33;
    color: white;
    padding: 15px 30px;
    font-size: 1.2em;
    font-family: 'Roboto', sans-serif;
    font-weight: 500;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.button:hover {
    background-color: darkorange;
}

.button:focus {
    outline: none;
    box-shadow: 0 0 10px rgba(240, 102, 51, 0.2);
}

.button + .button {
    margin-left: 10px; /* Adjust as needed for button spacing */
}
