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

:root {
    --primary-dark: #0a0a0a;
    --secondary-dark: #1a1a1a;
    --accent-dark: #2a2a2a;
    --text-primary: #ffffff;
    --text-secondary: #cccccc;
    --text-muted: #888888;
    --accent-color: #ff6b35;
    --accent-hover: #ff8555;
    --gold-accent: #d4af37;
    --border-color: #333333;
    --shadow-color: rgba(0, 0, 0, 0.5);
}

body {
    font-family: 'Roboto', sans-serif;
    background: var(--primary-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Bebas Neue', cursive;
    letter-spacing: 1px;
}

h1 {
    font-size: 2.5rem;
    color: var(--gold-accent);
}

h2 {
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    color: var(--accent-color);
}

h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header & Navigation */
header {
    background: var(--secondary-dark);
    border-bottom: 2px solid var(--accent-color);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px var(--shadow-color);
}

nav {
    padding: 1rem 0;
}

nav .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 2rem;
    color: var(--gold-accent);
    text-shadow: 2px 2px 4px var(--shadow-color);
}

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

.nav-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-links a:hover {
    color: var(--accent-color);
}

.nav-links a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent-color);
    transition: width 0.3s ease;
}

.nav-links a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('/images/WallBannerLisPlates.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

.hero-content h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.hero-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: var(--text-secondary);
}

.hero-highlight {
    background: var(--secondary-dark);
    padding: 2rem;
    border-radius: 10px;
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 20px var(--shadow-color);
}

.hero-highlight h3 {
    color: var(--gold-accent);
    font-size: 2rem;
}

.hero-highlight p {
    margin: 0.5rem 0;
    font-size: 1.1rem;
}

/* Sections */
.events-section,
.promotions-section,
.contact-section {
    padding: 4rem 0;
}

.events-section {
    background: var(--secondary-dark);
}

.promotions-section {
    background: var(--primary-dark);
}

.contact-section {
    background: var(--accent-dark);
}

/* Hero-Banquet Section */
.hero-banquet {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('/images/BanquetVenueWall.jpg');
    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 80px;
}

/* Events Grid */
.events-grid,
.promotions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.event-card,
.promotion-card {
    background: var(--accent-dark);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card:hover,
.promotion-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px var(--shadow-color);
}

.event-card h3,
.promotion-card h3 {
    color: var(--accent-color);
    margin-bottom: 0.5rem;
}

.event-date,
.promotion-date {
    color: var(--gold-accent);
    font-weight: bold;
    margin-bottom: 1rem;
}

.event-description,
.promotion-description {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.event-image,
.promotion-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 5px;
    margin-bottom: 1rem;
}

/* Contact Section */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-info h3 {
    color: var(--gold-accent);
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-secondary);
}

.contact-form h3 {
    color: var(--accent-color);
}

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

.contact-form input,
.contact-form textarea {
    padding: 0.8rem;
    background: var(--secondary-dark);
    border: 1px solid var(--border-color);
    border-radius: 5px;
    color: var(--text-primary);
    font-family: 'Roboto', sans-serif;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--accent-color);
}

.contact-form textarea {
    min-height: 100px;
    resize: vertical;
}

.contact-form button {
    padding: 1rem;
    background: var(--accent-color);
    color: var(--text-primary);
    border: none;
    border-radius: 5px;
    font-size: 1.1rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background: var(--accent-hover);
}

/* Footer */
footer {
    background: var(--primary-dark);
    padding: 2rem 0;
    text-align: center;
    border-top: 1px solid var(--border-color);
}

footer p {
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-content h2 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .events-grid,
    .promotions-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-highlight {
        padding: 1.5rem;
    }
    
    h2 {
        font-size: 1.8rem;
    }
}

/* Admin Button */
.admin-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: var(--accent-color);
    color: var(--text-primary);
    padding: 1rem;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 10px var(--shadow-color);
    transition: transform 0.3s ease;
    z-index: 999;
}

.admin-button:hover {
    transform: scale(1.1);
}

.admin-button::before {
    content: '\u2699';
    font-size: 1.5rem;
}

.gallery-section {
    padding: 60px 20px;
    background: var(--secondary-dark);
    text-align: center;
}

.gallery-section h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    margin-bottom: 30px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery-grid img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-grid img:hover {
    transform: scale(1.05);
}

#social {
    var(--accent-color)
    text-align: center; /* centers the heading text */
    padding: 20px;
}

#social div {
    display: flex;
    justify-content: center; /* centers icons horizontally */
    gap: 20px; /* space between icons */
    margin-top: 15px;
}

#social div a {
    font-size: 2rem;     /* icon size */
    color: #333;         /* default color */
    transition: color 0.3s;
}

#social div a:hover {
    color: #ffcc00;      /* hover color */
}