
/* === GLOBAL & SHARED STYLES === */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: white;
    text-align: center;
    background: url('images/Detroit\ Sky\ Line.jpeg') no-repeat center center fixed;
    background-size: cover;
}

/* === NAVIGATION BAR === */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background: rgba(0, 0, 0, 0.6);
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
}

.logo a {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
    text-decoration: none;
}

.nav-links ul {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.nav-links a:hover {
    color: #FFD700;
}

/* === HOME PAGE (index.html) === */
.index-page .hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    background: rgba(0, 0, 0, 0.5);
}

.index-page .hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.index-page .hero-content p {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.index-page .btn {
    padding: 1rem 2rem;
    font-size: 1.2rem;
    font-weight: bold;
    background: #FFD700;
    color: black;
    border-radius: 4px;
    text-decoration: none;
    transition: 0.3s;
}

.index-page .btn:hover {
    background: white;
    color: black;
}

/* === ABOUT PAGE === */
.about-page .about-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    padding-top: 80px;
}

.about-page .about-section h1 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.about-page .about-btn {
    padding: 1rem 2rem;
    background: #FFD700;
    color: black;
    font-size: 1.2rem;
    font-weight: bold;
    text-decoration: none;
    border-radius: 4px;
    transition: 0.3s;
    margin-top: 20vh;
    margin-bottom: 3rem;
}

.about-page .about-btn:hover {
    background: white;
    color: black;
}

.about-page .about-content {
    max-width: 800px;
    text-align: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 8px;
}

.about-page .about-content p {
    margin-bottom: 1rem;
}

/* === RESERVATION PAGE === */
.reservation-page {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    padding-top: 120px;
}

.reservation-page .search-section {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    width: 100%;
}

.reservation-page .search-bar {
    width: 300px;
    padding: 10px;
    font-size: 16px;
    border: 1px solid white;
    border-radius: 5px;
}

.reservation-page .search-btn {
    padding: 10px;
    font-size: 16px;
    background: #FFD700;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-left: 10px;
}

.reservation-page .reservation-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(0, 0, 0, 0.6);
    padding: 20px;
    border-radius: 10px;
    width: 90%;
    max-width: 500px;
}

.reservation-page .reservation-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: white;
}

.reservation-page .form-group {
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.reservation-page .form-group label {
    font-size: 1rem;
    color: white;
    margin-bottom: 5px;
}

.reservation-page .form-group input {
    padding: 10px;
    font-size: 1rem;
    border: 1px solid white;
    border-radius: 5px;
}

.reservation-page .btn {
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    background: #FFD700;
    color: black;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.reservation-page .btn:hover {
    background: white;
    color: black;
}

/* === FOOTER === */
footer {
    padding: 0.5ch;
    background: rgba(0, 0, 0, 0.6);
    width: 100%;
    position: relative;
    margin-top: 30px;
    text-align: center;
    color: white;
}

/* === CONTACT PAGE STYLES === */
.contact-reserve-section {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-top: 100px;
}

.contact-box, .reserve-box {
    background: rgba(0, 0, 0, 0.8);
    padding: 2rem;
    border-radius: 10px;
    width: 350px;
    text-align: center;
    color: white;
}

.contact-box h2, .reserve-box h2 {
    color: #FFD700;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.contact-box p, .reserve-box p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.contact-box .btn, .reserve-box .btn {
    display: inline-block;
    padding: 10px 20px;
    font-size: 1rem;
    font-weight: bold;
    background: #FFD700;
    color: black;
    border-radius: 5px;
    text-decoration: none;
    transition: 0.3s;
}

.contact-box .btn:hover, .reserve-box .btn:hover {
    background: white;
    color: black;
}

/* === ADDITIONAL INFO SECTION === */
.additional-info {
    max-width: 900px;
    margin: 50px auto;
    background: rgba(0, 0, 0, 0.6);
    padding: 2rem;
    border-radius: 10px;
}

.additional-info p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

/* === SEARCH ENGINE TOOLS === */
.engine-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.search-inline-wrapper {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 10px;
}

.engine-dropdown {
    width: auto;
    min-width: 150px;
}

.search-icon-btn {
    font-size: 18px;
    padding: 8px 10px;
    background: #FFD700;
    color: black;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.search-icon-btn:hover {
    background: white;
    color: black;
}

/* === SOCIAL ICONS === */
.social-follow-fixed {
    position: fixed;
    top: 40%;
    left: 0;
    display: flex;
    flex-direction: column;
    z-index: 999;
}

.social-follow-fixed a {
    padding: 10px;
    text-align: center;
    color: white;
    font-size: 20px;
    border-bottom: 1px solid #ccc;
    transition: all 0.3s ease;
    width: 45px;
    .social-follow-fixed a:focus {
        outline: 2px solid #FFD700; /* Gold color outline when focused */
        outline-offset: 4px;
    }
    
}

.social-follow-fixed a.facebook { background: #3b5998; }
.social-follow-fixed a.instagram { background: #e1306c; }
.social-follow-fixed a.threads { background: #000; }
.social-follow-fixed a.linkedin { background: #0077b5; }
.social-follow-fixed a.x { background: #000; }

.social-share-bar {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.social-share-bar a {
    font-size: 28px;
    text-decoration: none;
    padding: 12px 18px;
    border-radius: 50%;
    color: white;
    background-color: #444;
    transition: transform 0.3s, background 0.3s;
}

.social-share-bar .facebook { background: #3b5998; }
.social-share-bar .instagram { background: #e1306c; }
.social-share-bar .threads { background: #000000; }
.social-share-bar .linkedin { background: #0077b5; }
.social-share-bar .x { background: #000; }

.social-share-bar a:hover {
    transform: scale(1.2);
    opacity: 0.9;
}

/* === RESTAURANT SEARCH FEATURE === */
.restaurant-search {
    margin: 2rem auto;
    padding: 1rem;
    max-width: 700px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    color: #fff;
    text-align: left;
}

.restaurant-search label,
.restaurant-search h3 {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
    font-weight: bold;
}

.restaurant-search select {
    padding: 0.5rem;
    border-radius: 5px;
    border: none;
    font-size: 1rem;
    background-color: #fff;
    color: #000;
    width: 100%;
    max-width: 300px;
    margin-bottom: 1rem;
}

.restaurant-list {
    margin-top: 1rem;
    display: grid;
    gap: 1rem;
}

.restaurant-card {
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 8px;
    border: 1px solid #ffffff40;
}

.restaurant-card h4 {
    margin-bottom: 0.3rem;
    color: #FFD700;
    font-size: 1.2rem;
}

.restaurant-card p {
    margin-bottom: 0.5rem;
    color: #fff;
}

.time-slot {
    display: inline-block;
    margin: 0.25rem;
    padding: 0.3rem 0.6rem;
    background-color: #fff;
    color: #000;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    font-size: 0.9rem;
    transition: background-color 0.2s ease-in-out;
}

.time-slot:hover {
    background-color: #FFD700;
    color: #000;
}
