:root {
    --primary-color: #1B5E20;
    --secondary-color: #D4AF37;
    --bg-color: #f5f5f5;
    --text-color: #333;
    --white: #ffffff;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Georgia', serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Splash Screen */
#splash-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.splash-logo {
    height: 200px;
    margin-bottom: 24px;
}

.loader {
    border: 4px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    border-top: 4px solid var(--secondary-color);
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin-bottom: 16px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.splash-text {
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 2px;
}

/* Navigation */
header {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.nav-logo {
    height: 40px;
}

header h1 {
    font-size: 1.5rem;
    font-weight: bold;
}

.nav-links button {
    background: none;
    border: none;
    color: var(--white);
    padding: 0.5rem 1rem;
    cursor: pointer;
    font-weight: bold;
    opacity: 0.7;
}

.nav-links button.active {
    opacity: 1;
    color: var(--secondary-color);
}

/* Hero Section */
.hero {
    height: 250px;
    position: relative;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.5);
}

.hero-content {
    position: absolute;
    text-align: center;
    color: var(--white);
    z-index: 10;
}

.hero h2 {
    font-size: 1.5rem;
    letter-spacing: 2px;
}

/* Ticker */
.ticker-container {
    background-color: var(--secondary-color);
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
}

.ticker-text {
    display: inline-block;
    padding-left: 100%;
    animation: ticker 20s linear infinite;
    font-weight: bold;
    color: rgba(0, 0, 0, 0.8);
}

@keyframes ticker {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* Specials Grid */
.specials {
    padding: 2rem 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.specials h3, .booking h3, .contact-details h3, .contact-form h3 {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-weight: bold;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.product-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    cursor: pointer;
    transition: transform 0.2s;
}

.product-card:hover {
    transform: translateY(-5px);
}

.product-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
}

.product-info {
    padding: 0.8rem;
}

.product-info h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.product-price {
    color: var(--secondary-color);
    font-weight: bold;
}

/* Booking Section */
.booking {
    padding: 2rem 1rem;
    max-width: 800px;
    margin: 0 auto 100px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

input, textarea {
    padding: 0.8rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    width: 100%;
}

.book-now, .send-btn {
    background-color: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 1rem;
    border-radius: 8px;
    font-weight: bold;
    cursor: pointer;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: var(--white);
    margin: 10% auto;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

.close-modal {
    position: absolute;
    top: 10px;
    right: 20px;
    color: #aaa;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    z-index: 20;
}

#modal-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.modal-info {
    padding: 1.5rem;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

#modal-title {
    color: var(--primary-color);
    font-size: 1.5rem;
}

#modal-price {
    color: var(--secondary-color);
    font-size: 1.4rem;
    font-weight: bold;
}

#modal-description {
    line-height: 1.6;
    color: #666;
}

/* Contact Page */
.contact-hero {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 3rem 1rem;
    text-align: center;
}

.contact-details {
    padding: 2rem 1rem 100px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info p {
    margin-bottom: 1rem;
}

/* Bottom Nav */
footer {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    border-top: 1px solid #ddd;
    z-index: 100;
}

.company-footer {
    text-align: center;
    padding: 10px 0 5px;
    font-size: 0.7rem;
    color: #888;
    background-color: #fafafa;
}

.bottom-nav {
    display: flex;
    justify-content: space-around;
    padding: 0.5rem;
}

.bottom-nav-item {
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    color: #888;
    cursor: pointer;
    gap: 4px;
}

.bottom-nav-item i {
    font-style: normal;
    font-size: 1.2rem;
}

.bottom-nav-item span {
    font-size: 0.8rem;
}

.bottom-nav-item.active {
    color: var(--secondary-color);
}

@media (min-width: 768px) {
    .product-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-details {
        flex-direction: row;
    }
    
    .contact-info, .contact-form {
        flex: 1;
    }
}
