/* Fonts & Body */
body {
    font-family: 'Roboto', sans-serif;
    color: #444;
    background-color: #fff;
    line-height: 1.6;
}

/* Header */
.navbar {
    background-color: #0f233e; /* Dark navy */
    padding: 1rem 2rem;
}

.navbar-brand {
    font-weight: 700;
    font-size: 1.8rem;
    color: #ff6b6b; /* Coral accent */
}

.navbar-brand:hover {
    color: #ff4a4a;
}

.nav-link {
    color: #fff;
    font-weight: 500;
    margin-right: 1rem;
}

.nav-link:hover, .nav-link:focus {
    color: #ff6b6b;
}

/* Hero Section */
.hero {
    background: url('/images/hero_bg.jpeg') no-repeat center center/cover;
    height: 75vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    text-shadow: 2px 2px 8px rgba(0,0,0,0.7);
}

/* Buttons */
.btn-primary {
    background-color: #ff6b6b;
    border: none;
}

.btn-primary:hover {
    background-color: #ff4a4a;
}

/* Sections */
section {
    padding: 60px 0;
}

/* Footer */
footer {
    background-color: #0f233e;
    color: #aaa;
    padding: 20px 0;
    text-align: center;
}

/* Responsive tweaks */
@media (max-width: 767px) {
    .navbar-nav {
        background-color: #0f233e;
        padding: 1rem;
    }
}

/* style from nigfood layout */

body {
    font-family: 'Roboto', sans-serif;
    background-color: #f8f9fa;
}
.navbar-brand {
    font-family: 'Playfair Display', serif;
    font-weight: bold;
    font-size: 1.8rem;
}
.hero-slide {
    height: 100vh;
    background-size: cover;
    background-position: center center;
    position: relative;
}
.hero-slide .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* dark overlay */
    z-index: 1;
}
.carousel-caption {
    z-index: 2;
    color: #fff;
    text-shadow: 0 1px 3px rgba(0,0,0,0.8);
}
footer {
    background-color: #343a40;
    color: white;
    padding: 2rem 0;
}
footer a {
    color: #ffc107;
}
.navbar-toggler.collapsed .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba%28255, 255, 255, 1%29' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3E%3C/svg%3E");
}



/* guest layout for authentication pages */
.auth-container input[type="text"],
.auth-container input[type="email"],
.auth-container input[type="password"] {
    border-radius: 10px;
    border: 1px solid #ddd;
    background-color: #fafafa;
    padding: 0.85rem 1rem;
    width: 100%;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

.auth-container input:focus {
    outline: none;
    border-color: #ff6b35;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255,107,53,0.25);
}

.auth-container button {
    border-radius: 10px;
    background-color: #ff6b35;
    color: #fff;
    font-weight: 600;
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(255,107,53,0.3);
    transition: background-color 0.25s ease, transform 0.1s ease;
}

.auth-container button:hover {
    background-color: #e55d2c;
    transform: translateY(-1px);
}


/* from guest layout style */
body.auth-body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to right, #ff6b35, #ff9966);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.auth-container {
    width: 100%;
    max-width: 420px;
    background: #fff;
    border-radius: 18px;
    padding: 2.5rem 2rem;
    box-shadow: 0 10px 35px rgba(0,0,0,0.12);
    animation: fadeIn 0.7s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

input[type="text"], input[type="email"], input[type="password"] {
    border-radius: 10px;
    border: 1px solid #ddd;
    background-color: #fafafa;
    padding: 0.85rem 1rem;
    width: 100%;
    font-size: 0.95rem;
    transition: all 0.2s ease;
}

input:focus {
    outline: none;
    border-color: #ff6b35;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(255,107,53,0.25);
}

button {
    border-radius: 10px;
    background-color: #ff6b35;
    color: #fff;
    font-weight: 600;
    width: 100%;
    padding: 0.85rem 1rem;
    font-size: 1rem;
    box-shadow: 0 3px 10px rgba(255,107,53,0.3);
    transition: background-color 0.25s ease, transform 0.1s ease;
}

button:hover {
    background-color: #e55d2c;
    transform: translateY(-1px);
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #ff6b35;
    text-align: center;
}

.welcome-text {
    font-size: 1.25rem;
    font-weight: 500;
    color: #222;
    text-align: center;
}

.subtitle {
    font-size: 0.95rem;
    color: #555;
    text-align: center;
    margin-bottom: 1.8rem;
}

.form-footer a {
    color: #ff6b35;
    font-weight: 500;
}

.form-footer a:hover {
    text-decoration: underline;
}