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

body {
    font-family: 'Lora', serif;
    line-height: 1.6;
    color: #2c2c2c;
    background: linear-gradient(135deg, #f8f6f0 0%, #f0ede4 100%);
}

html {
    scroll-behavior: smooth;
}

/* ===============================
   HEADER SECTION
   =============================== */
header {
    background: linear-gradient(135deg, #2c2c2c 0%, #1a1a1a 100%);
    padding: 4rem 1.25rem;
    text-align: center;
    color: white;
}

header img {
    max-height: 18rem;
    height: auto;
    width: auto;
    max-width: 35rem;
    filter: brightness(1.3) contrast(1.2);
}

/* ===============================
   NAVIGATION SECTION
   =============================== */
nav {
    background: #2c2c2c;
    margin: 0;
    position: relative;
    z-index: 10;
    box-shadow: 0 0.1875rem 0.625rem rgba(0,0,0,0.2);
}

nav ul {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow: hidden;
    max-width: 75rem;
    margin: 0 auto;
}

nav li {
    flex: 1;
}

nav li.search-container {
    flex: 1.5;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    gap: 0.5rem;
}

#search-box {
    background: rgba(255, 255, 255, 0.1);
    border: 0.125rem solid rgba(212, 175, 55, 0.3);
    border-radius: 1.25rem;
    padding: 0.5rem 1rem;
    color: white;
    font-size: 0.9rem;
    width: 100%;
    max-width: 12rem;
    transition: all 0.3s ease;
}

#search-box::placeholder {
    color: rgba(255, 255, 255, 0.7);
    font-style: italic;
}

#search-box:focus {
    outline: none;
    background: rgba(255, 255, 255, 0.2);
    border-color: #d4af37;
    box-shadow: 0 0 0.625rem rgba(212, 175, 55, 0.3);
}

#search-btn {
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

#search-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 0.25rem 0.75rem rgba(212, 175, 55, 0.4);
}

nav a {
    display: block;
    padding: 0.9375rem 1.25rem;
    text-align: center;
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    transition: all 0.3s ease;
    position: relative;
    z-index: 10;
    background: transparent;
}

nav a::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

nav a:hover::before,
nav a.active::before {
    opacity: 1;
}

nav a:hover,
nav a.active {
    color: #1a1a1a;
    font-weight: bold;
}

/* ===============================
   MAIN CONTENT SECTION
   =============================== */
main {
    max-width: 75rem;
    margin: 0 auto;
    padding: 1.875rem 1.25rem 1.25rem;
}

/* ===============================
   PROMOTIONAL BANNER SECTION
   =============================== */
.promotional-banner {
    background: linear-gradient(135deg, rgba(26,26,26,0.8), rgba(44,44,44,0.6));
    border-radius: 0.9375rem;
    margin-bottom: 1.875rem;
    min-height: 25rem;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0.5rem 1.5625rem rgba(0,0,0,0.15);
}

.banner-overlay {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 3rem;
    gap: 3rem;
    color: white;
}

.banner-overlay h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    margin-bottom: 1.25rem;
    color: #d4af37;
    text-shadow: 0.125rem 0.125rem 0.25rem rgba(0,0,0,0.5);
    font-weight: bold;
}

.banner-overlay p1 {
    display: block;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 1.5625rem;
    color: #f5f5f5;
}

.cta-button {
    position: relative;
    margin-top: 1.5rem;
    flex-shrink: 0;
}

.cta-button img {
    width: 100%;
    max-width: 30rem;
    min-width: 20rem;
    height: auto;
    min-height: 15rem;
    object-fit: cover;
    border-radius: 0.625rem;
    box-shadow: 0 0.5rem 1.25rem rgba(0,0,0,0.3);
}

.cta-button a {
    display: inline-block;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
    color: #1a1a1a;
    padding: 0.875rem 2rem;
    text-decoration: none;
    border-radius: 1.5625rem;
    font-weight: bold;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0.3125rem 0.9375rem rgba(212, 175, 55, 0.3);
    position: absolute;
    bottom: -1.25rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    z-index: 10;
}

.cta-button a:hover {
    transform: translate(-50%, -0.125rem);
    box-shadow: 0 0.5rem 1.5625rem rgba(212, 175, 55, 0.4);
}

/* ===============================
   THREE COLUMNS SECTION
   =============================== */
.three-columns {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5625rem;
    align-items: stretch;
}

.column {
    background: white;
    border-radius: 0.9375rem;
    overflow: hidden;
    box-shadow: 0 0.3125rem 1.25rem rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.column:hover {
    transform: translateY(-0.5rem);
    box-shadow: 0 0.9375rem 2.1875rem rgba(0,0,0,0.15);
}

.column-image {
    height: 12.5rem;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
}

.column-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.column:hover .column-image img {
    transform: scale(1.05);
}

.column-content {
    padding: 1.5625rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.column-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    color: #1a1a1a;
    margin-bottom: 0.9375rem;
    font-weight: bold;
    position: relative;
}

.column-content h2::after {
    content: '';
    position: absolute;
    bottom: -0.3125rem;
    left: 0;
    width: 2.5rem;
    height: 0.125rem;
    background: linear-gradient(45deg, #d4af37, #f4d03f);
}

.column-content p2 {
    display: block;
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    flex-grow: 1;
}

.column-link {
    color: #d4af37;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    margin-top: auto;
}

.column-link::after {
    content: '→';
    margin-left: 0.3125rem;
    transition: margin-left 0.3s ease;
}

.column-link:hover::after {
    margin-left: 0.625rem;
}

.column-link:hover {
    color: #1a1a1a;
}

.hours-info {
    background: #f8f6f0;
    padding: 0.9375rem;
    border-radius: 0.5rem;
    margin-top: 0.625rem;
    border-left: 0.1875rem solid #d4af37;
}

.hours-info p {
    margin-bottom: 0.3125rem;
    font-size: 0.9rem;
    color: #555;
}

/* ===============================
   FOOTER SECTION
   =============================== */
footer {
    background: #f8f6f0;
    border-top: 0.0625rem solid #e0e0e0;
    padding: 1.5rem 0;
    margin-top: 2rem;
}

.footer-columns {
    max-width: 75rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.25rem;
}

.footer-left {
    display: flex;
    align-items: center;
}

.footer-left img {
    max-height: 6rem;
    height: auto;
    width: auto;
    max-width: 100%;
}

.footer-right {
    display: flex;
    align-items: center;
}

.footer-right p {
    color: #888;
    font-size: 0.9rem;
    font-style: italic;
    margin: 0;
}

/* ===============================
   RESPONSIVE DESIGN - TABLET
   =============================== */
@media (max-width: 64rem) {
    .banner-overlay {
        flex-direction: column;
        text-align: center;
        gap: 1.875rem;
    }
    
    .cta-button a {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 1.25rem;
    }
}

/* ===============================
   RESPONSIVE DESIGN - MOBILE
   =============================== */
@media (max-width: 48rem) {
    main {
        padding: 1.25rem 1rem;
    }

    header img {
        max-height: 8rem;
        max-width: 20rem;
    }

    nav ul {
        flex-direction: column;
    }

    nav li.search-container {
        flex-direction: row;
        justify-content: center;
        padding: 0.75rem 1rem;
    }

    #search-box {
        max-width: 10rem;
        font-size: 0.85rem;
    }

    .three-columns {
        grid-template-columns: 1fr;
        gap: 1.25rem;
    }

    .footer-columns {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .banner-overlay {
        padding: 1.5625rem;
    }

    .banner-overlay h1 {
        font-size: 2rem;
    }

    .column-content {
        padding: 1.25rem;
    }
}

/* ===============================
   ANIMATIONS
   =============================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(1.875rem);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
