/* --- General Premium Styling --- */
:root {
    --color-primary: #1A1A1D; /* Deep Charcoal/Navy */
    --color-secondary: #C39D55; /* Soft Gold/Brass Accent */
    --color-light: #F7F7F7; /* Off-White Background */
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Roboto', Arial, sans-serif;
}

body {
    font-family: var(--font-sans);
    color: var(--color-primary);
    background-color: var(--color-light);
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Premium Feature: Custom Scrollbar */
body::-webkit-scrollbar {
    width: 8px;
}
body::-webkit-scrollbar-track {
    background: var(--color-light);
}
body::-webkit-scrollbar-thumb {
    background: var(--color-secondary);
    border-radius: 10px;
}
body::-webkit-scrollbar-thumb:hover {
    background: #a88448;
}

h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
}

/* --- Header & Navigation --- */
header {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.95);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 12px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* --- Logo Styling (Image and Text Combined) --- */
.logo {
    text-decoration: none;
    display: flex; /* Use flexbox to align image and text */
    align-items: center; /* Vertically center image and text */
    height: 40px;
}

.logo img {
    height: 40px; /* Logo image height */
    width: auto;
    margin-right: 10px; /* Space between the image and the text */
    transition: opacity 0.3s;
}

.logo img:hover {
    opacity: 0.8;
}

.logo-text {
    font-size: 1.6em;
    color: var(--color-primary);
    letter-spacing: 2px;
    font-family: var(--font-serif);
    font-weight: 900;
    transition: color 0.3s;
}

.logo:hover .logo-text {
    color: var(--color-secondary); /* Premium gold hover effect on text */
}

nav a {
    color: var(--color-primary);
    text-decoration: none;
    margin-left: 30px;
    font-size: 0.95em;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--color-secondary);
}

/* Subtle underline hover effect */
nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    display: block;
    margin-top: 5px;
    right: 0;
    background: var(--color-secondary);
    transition: width 0.3s ease;
}

nav a:hover::after {
    width: 100%;
    left: 0;
    background: var(--color-secondary);
}

/* --- Hero Section (Parallax Setup) --- */
.hero-container {
    height: 100vh;
    overflow-x: hidden;
    overflow-y: scroll;
    perspective: 1px;
}

.hero {
    transform-style: preserve-3d;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--color-light);
    position: relative;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    transform: translateZ(-1px) scale(2);
    background: url('background.jpg') center center no-repeat;
    background-size: cover;
    z-index: -1;
    filter: brightness(0.8);
}

.hero-content {
    z-index: 10;
    padding: 20px;
    transform: translateZ(0);
}

.hero h1 {
    font-size: 5.5em;
    margin-bottom: 0.05em;
    letter-spacing: 5px;
    text-shadow: 0 0 15px rgba(0, 0, 0, 0.8);
    animation: fadeInDown 1s ease-out;
    text-transform: uppercase;
}

/* Tagline Styling */
.tagline {
    font-size: 1.6em;
    font-family: var(--font-serif);
    font-weight: 400;
    color: var(--color-secondary);
    text-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 1s ease-out 0.5s forwards;
    opacity: 0;
    margin-top: 0;
}

/* --- Moving Text Feature (Marquee) --- */
.marquee-container {
    width: 100%;
    overflow: hidden;
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 10px 0;
    border-top: 2px solid var(--color-secondary);
    border-bottom: 2px solid var(--color-secondary);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

.marquee-content {
    white-space: nowrap;
    display: inline-block;
    padding-left: 100%;
    animation: marquee 30s linear infinite;
    font-size: 1.2em;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.marquee-content span {
    margin-right: 50px;
    color: var(--color-secondary);
    font-family: var(--font-serif);
    font-weight: 700;
}

@keyframes marquee {
    0% { transform: translate(0, 0); }
    100% { transform: translate(-100%, 0); }
}

/* --- Main Content Sections --- */
.section {
    padding: 100px 5%;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.section h2 {
    font-size: 3em;
    text-align: center;
    margin-bottom: 60px;
    color: var(--color-primary);
    text-transform: uppercase;
    letter-spacing: 2px;
    position: relative;
}

.section h2::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--color-secondary);
    margin: 15px auto 0;
}

/* --- Responsive Video Embedding --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    margin-top: 30px;
}

.video-item {
    overflow: hidden;
    border: 1px solid #E0E0E0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: box-shadow 0.3s ease;
}

.video-item:hover {
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio (for YouTube) */
    height: 0;
    overflow: hidden;
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.video-caption {
    padding: 15px;
    background-color: white;
    font-size: 0.9em;
    color: var(--color-primary);
}

/* --- Gallery Grid (Refined) --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.gallery-item {
    overflow: hidden;
    border-radius: 5px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.1);
}

.gallery-item img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    display: block;
    transition: opacity 0.3s;
}

.gallery-item:hover img {
    opacity: 0.9;
}

/* --- Floating CTA --- */
.floating-cta {
    position: fixed;
    right: 30px;
    bottom: 30px;
    background-color: var(--color-secondary);
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: bold;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, background-color 0.3s;
    z-index: 1001;
    text-transform: uppercase;
}

.floating-cta:hover {
    background-color: #a88448;
    transform: scale(1.05);
}

/* --- Subtle Scroll Animation --- */
.fade-in {
    opacity: 0;
    transition: opacity 1.2s ease-out, transform 1.2s ease-out;
    transform: translateY(30px);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* --- Footer (Elegant Multi-Column Redesign) --- */
footer {
    background-color: var(--color-primary);
    color: var(--color-light);
    padding: 60px 5%;
    font-size: 0.9em;
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    text-align: left;
}

.footer-column {
    width: 30%;
    margin-bottom: 30px;
}

/* Ensure columns stack nicely on mobile */
@media (max-width: 768px) {
    .footer-column {
        width: 100%;
        text-align: center;
    }
    .footer-column h4 {
        margin-top: 20px;
    }
}

.footer-column h4 {
    font-family: var(--font-serif);
    font-size: 1.2em;
    color: var(--color-secondary);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
    padding-bottom: 5px;
    border-bottom: 1px solid rgba(195, 157, 85, 0.3);
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 8px;
}

.footer-column a {
    color: var(--color-light);
    text-decoration: none;
    transition: color 0.3s;
}

.footer-column a:hover {
    color: var(--color-secondary);
}

.footer-contact p {
    margin: 0 0 10px 0;
}

/* Copyright Row */
.footer-copyright {
    text-align: center;
    padding-top: 30px;
    margin-top: 30px;
    border-top: 1px solid rgba(247, 247, 247, 0.1);
}