/*
Theme Name: Lumiere Lounge
Author: Pierce Doman
Description: An elegant website for Lumiere Lounge, a club and lounge.
Version: 1.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lumiere-lounge
*/

/* Base styles will go here */
/* We'll use Google Fonts for an elegant feel */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@300;440;700&family=Playfair+Display:wght@400;700&display=swap');

:root {
    --primary-font: 'Playfair Display', serif;
    --secondary-font: 'Cormorant Garamond', serif;
    --black-background: #000000;
    --gold-color: #DAA520; /* A rich gold color */
    --text-color: #E0E0E0; /* Light grey for good contrast on black */
}

body {
    margin: 0;
    padding: 0;
    font-family: var(--secondary-font);
    color: var(--text-color);
    background-color: var(--black-background);
    /* Apply noise.png over the entire page */
    background-image: url('images/noise.png'); /* Ensure this path is correct */
    background-repeat: repeat;
    background-attachment: fixed; /* Fix the noise so it doesn't scroll with content */
    overflow-x: hidden; /* Prevent horizontal scroll */
}

/* Basic reset for elements */
h1, h2, h3, h4, h5, h6, p, ul, ol {
    margin: 0;
    padding: 0;
}

a {
    color: var(--gold-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: #FFD700; /* Lighter gold on hover */
}

.site {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.site-main {
    flex-grow: 1;
}

/* General container styling for alternating backgrounds */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    box-sizing: border-box;
}

/* Section with noise background (inherits from body) */
.section-noise {
    background-color: transparent; /* Allows body's noise to show through */
}

/* Section with solid black background */
.section-black {
    background-color: var(--black-background);
    background-image: none; /* Override body's noise for this section */
}

/* Utility classes for text alignment */
.text-center {
    text-align: center;
}

/* Headings */
h1, h2, h3 {
    font-family: var(--primary-font);
    color: var(--gold-color);
    margin-bottom: 20px;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
    font-weight: 700;
}

h3 {
    font-size: 1.8rem;
    font-weight: 400;
}

p {
    line-height: 1.6;
    margin-bottom: 15px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    h1 {
        font-size: 2.5rem;
    }
    h2 {
        font-size: 2rem;
    }
    h3 {
        font-size: 1.5rem;
    }
    .container {
        padding: 20px 15px;
    }
}

/* --- Footer Styles --- */

.site-footer {
    background-color: var(--black-background); /* Uses your theme's defined black background */
    color: var(--text-color); /* Uses your theme's defined text color */
    padding: 60px 20px 30px; /* Generous padding for visual breathing room */
    border-top: 1px solid rgba(218, 165, 32, 0.2); /* Subtle gold border at the top */
    font-family: var(--secondary-font); /* Uses your theme's secondary font */
    text-align: center; /* Default text alignment */
}

.site-footer .container {
    max-width: 1200px; /* Constrain content width for better readability */
    margin: 0 auto; /* Center the container */
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); /* Creates a responsive grid layout */
    gap: 40px; /* Space between grid items */
    margin-bottom: 40px;
    text-align: left; /* Align text left within each grid item */
}

.footer-section h3 {
    color: var(--gold-color); /* Uses your theme's defined gold color */
    font-family: var(--primary-font); /* Uses your theme's primary font for headings */
    font-size: 1.5rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px; /* Space for the underline effect */
}

.footer-section h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px; /* Length of the gold underline */
    height: 2px;
    background-color: var(--gold-color);
}

.footer-section p,
.footer-section ul {
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.footer-section ul {
    list-style: none; /* Remove default list bullets */
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section ul li span {
    font-weight: bold;
    color: rgba(255, 255, 255, 0.8); /* Slightly brighter for emphasis */
    margin-right: 5px;
}

.footer-section a {
    color: var(--text-color); /* Link color matches main text */
    text-decoration: none;
    transition: color 0.3s ease; /* Smooth transition on hover */
}

.footer-section a:hover {
    color: var(--gold-color); /* Gold highlight on hover */
}

.footer-social {
    margin-top: 20px;
    display: flex;
    gap: 15px; /* Space between social icons */
    justify-content: flex-start; /* Align social icons to the left */
}

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(218, 165, 32, 0.5); /* Gold border for icons */
    border-radius: 50%; /* Make icons circular */
    color: var(--gold-color); /* Icon color */
    transition: all 0.3s ease; /* Smooth hover effects */
}

.footer-social a:hover {
    background-color: var(--gold-color); /* Gold background on hover */
    color: var(--black-background); /* Dark icon on gold background */
    transform: translateY(-3px); /* Slight lift effect */
    box-shadow: 0 5px 15px rgba(218, 165, 32, 0.4); /* Subtle shadow on hover */
}

.footer-social svg {
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.footer-bottom {
    border-top: 1px solid rgba(218, 165, 32, 0.1); /* Subtle separator for copyright */
    padding-top: 25px;
    margin-top: 25px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6); /* Muted color for copyright text */
    text-align: center;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr; /* Stack columns on smaller screens */
        text-align: center; /* Center text for stacked columns */
    }

    .footer-section h3::after {
        left: 50%;
        transform: translateX(-50%); /* Center the underline for centered text */
    }

    .footer-social {
        justify-content: center; /* Center social icons when columns stack */
    }
}

