
/* --- CSS RESET --- */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
/* Hardcoded to Deep Charcoal Black */
background-color: #111111;
/* Hardcoded to White Text */
color: #FFFFFF;
font-family: 'Arial', sans-serif;
line-height: 1.6;
}
/* --- HIGH-END TYPOGRAPHY --- */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Montserrat:wght@300;400;600&display=swap');
h1, h2, h3, .logo {
font-family: 'Playfair Display', serif;
/* Hardcoded to Metallic Gold */
color: #D4AF37;
font-weight: 700;
letter-spacing: 2px;
}
p, a, li, .tagline {
font-family: 'Montserrat', sans-serif;
font-weight: 300;
}
a {
text-decoration: none;
color: #FFFFFF;
transition: color 0.3s ease;
}
a:hover {
color: #D4AF37;
}
/* --- NAVIGATION HEADER --- */
header {
padding: 30px 50px;
display: flex;
flex-direction: column;
align-items: flex-start;
border-bottom: 1px solid rgba(212, 175, 55, 0.2);
position: relative;


}
.logo {
font-size: 1.5rem;
text-transform: uppercase;
white-space: nowrap;

}
.logo span {
display: block;
font-family: 'Montserrat', sans-serif;
font-size: 0.7rem;
color: #FFFFFF;
letter-spacing: 4px;
margin-top: 5px;
}
nav ul {
list-style: none;
display: flex;
gap: 100px;
margin-top: 40px;




}
nav ul li a {

margin-right: 20px;
font-size: 0.9rem;
text-transform: uppercase;
letter-spacing: 1px;
}

.header-vinyl {
	position: absolute;
	top: 30px;
	right: 50px;
	width: 120px

}






/* --- HERO SECTION --- */
.hero {
text-align: center;
padding: 60px 20px;
}
/* The Gold Frame for Mainpic.png */
.hero-image-container {
margin: 0 auto 40px auto;
max-width: 1000px;
border: 2px solid #D4AF37;
padding: 10px;
background-color: #000000;
}
.hero-image-container img {
width: 100%;
height: auto;
display: block;
}
.hero-text h1 {
font-size: 3rem;
margin-bottom: 20px;
}
.hero-text p {
font-size: 1.2rem;
max-width: 800px;
margin: 0 auto 40px auto;
color: #cccccc;
}
/* --- BUTTONS --- */
.btn-gold {
display: inline-block;
background-color: #D4AF37;
color: #111111;
padding:  15px 40px;
font-size: 1rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2px;
border: 2px solid #D4AF37;
transition: all 0.3s ease;
}
.btn-gold:hover {
background-color: #111111;
color: #D4AF37;
}
.btn-outline {
display: inline-block;
background-color: transparent;
color: #D4AF37;
padding: 15px 40px;
font-size: 1rem;
font-weight: 600;
text-transform: uppercase;
letter-spacing: 2px;
border: 2px solid #D4AF37;
margin-left: 15px;
transition: all 0.3s ease;
}
.btn-outline:hover {
background-color: #D4AF37;
color: #111111;
}
/* --- SERVICES OVERVIEW --- */
.services {
display: flex;
justify-content: center;
gap: 40px;
padding: 80px 50px;
background-color: #0a0a0a;
flex-wrap: wrap;
}
.service-card {

width: 380px;
max-width: 100%;
padding: 40px 30px;
border: 1px solid rgba(212, 175, 55, 0.3);
text-align: center;
transition: transform 0.3s ease;
}
.service-card:nth-child(3){
margin-top: 80px;
}


.service-card:hover {
transform: translateY(-10px);
border-color: #D4AF37;
}
.service-card h3 {
font-size: 1.5rem;
margin-bottom: 20px;
}
.service-card p {
font-size: 0.95rem;
color: #aaaaaa;
}
/* --- FOOTER --- */
footer {
text-align: center;
padding: 40px 20px;
border-top: 1px solid rgba(212, 175, 55, 0.2);
}
footer p {
font-size: 0.85rem;
color: #666666;
margin-top: 10px;
}
/* --- MOBILE RESPONSIVENESS --- */
@media (max-width: 768px) {
header {
flex-direction: column;
gap: 20px;
padding: 20px;








}
nav ul {
flex-direction: column;
text-align: center;
gap: 100px;
}
.hero-text h1 {
font-size: 2rem;
}
.btn-outline {
margin-left: 0;
margin-top: 15px;
}
}

/* --- ABOUT PAGE SPECIFIC STYLES --- */
.page-header {
    text-align: center;
    padding: 60px 20px 20px 20px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
}

.about-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.bio-section {
    margin-bottom: 60px;
    padding: 40px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    background-color: #0a0a0a;
}

.bio-section h2 {
    font-size: 2rem;
    margin-bottom: 20px;
    border-bottom: 1px solid #D4AF37;
    display: inline-block;
    padding-bottom: 10px;
}

.bio-section p {
    font-size: 1.1rem;
    color: #cccccc;
    margin-bottom: 20px;
    line-height: 1.8;
}

.gold-highlight {
    color: #D4AF37;
    font-weight: 600;
}




     


 /* --- GALLERY GRID SYSTEM --- */
        .gallery-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .event-section {
            margin-bottom: 80px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .event-section h2 {
            font-size: 2rem;
            margin-bottom: 5px;
        }

        .event-section p {
            color: #aaaaaa;
            margin-bottom: 30px;
            font-style: italic;
        }

        /* Flexbox to put Image and Video side-by-side */
        .media-row {
            display: flex;
            gap: 40px;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
        }

        /* The Gold Frames for Media */
        .media-box {
            flex: 1;
            min-width: 300px;
            border: 2px solid #D4AF37;
            padding: 10px;
            background-color: #000000;
        }

        .media-box img, .media-box video {
            width: 100%;
            height: auto;
            display: block;
        }
        
        /* Adds a label under the frames */
        .media-label {
            text-align: center;
            margin-top: 15px;
            color: #D4AF37;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* --- FOOTER --- */
        footer {
            text-align: center;
            padding: 40px 20px;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            margin-top: 40px;
        }

        footer p {
            font-size: 0.85rem;
            color: #666666;
            margin-top: 10px;
        }

        /* --- MOBILE RESPONSIVENESS --- */
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                gap: 20px;
                padding: 20px;
            }
            nav ul {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
        }
    

 




/* --- RIGHT SIDE: BOOKING FORM --- */
        .contact-form-section {
            flex: 1.5;
            min-width: 300px;
        }

        .contact-form {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
        }

        .form-group label {
            margin-bottom: 8px;
            color: #D4AF37;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        /* Form Inputs */
        input[type="text"],
        input[type="email"],
        input[type="tel"],
        input[type="date"],
        textarea {
            width: 100%;
            padding: 15px;
            background-color: #1a1a1a;
            border: 1px solid #333333;
            color: #FFFFFF;
            font-family: 'Montserrat', sans-serif;
            font-size: 1rem;
            outline: none;
            transition: border-color 0.3s ease;
        }

        input:focus,
        textarea:focus {
            border-color: #D4AF37;
        }

        textarea {
            resize: vertical;
            min-height: 150px;
        }

        /* Submit Button */
        button[type="submit"] {
            padding: 15px 30px;
            background-color: #D4AF37;
            color: #000000;
            border: none;
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            font-weight: 700;
            cursor: pointer;
            text-transform: uppercase;
            letter-spacing: 2px;
            transition: background-color 0.3s ease, color 0.3s ease;
            margin-top: 10px;
        }

        button[type="submit"]:hover {
            background-color: #FFFFFF;
            color: #000000;
        }

        /* --- FOOTER --- */
        footer {
            text-align: center;
            padding: 40px 20px;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            margin-top: 40px;
        }

        footer p {
            font-size: 0.85rem;
            color: #666666;
            margin-top: 10px;
        }

        /* --- MOBILE RESPONSIVENESS --- */
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                gap: 20px;
                padding: 20px;
            }
            nav ul {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
            .contact-container {
                flex-direction: column;
            }
        }
   





/* --- TERMS CONTENT CONTAINER --- */
        .terms-container {
            max-width: 900px;
            margin: 0 auto;
            padding: 40px 20px;
        }

        .terms-section {
            margin-bottom: 40px;
        }

        .terms-section h2 {
            font-size: 1.5rem;
            margin-bottom: 15px;
            color: #D4AF37;
        }

        .terms-section p {
            color: #cccccc;
            margin-bottom: 15px;
            font-size: 1rem;
        }
        
        .terms-section ul {
            list-style-type: square;
            margin-left: 20px;
            color: #cccccc;
            margin-bottom: 15px;
        }
        
        .terms-section li {
            margin-bottom: 8px;
        }

        /* --- FOOTER --- */
        footer {
            text-align: center;
            padding: 40px 20px;
            border-top: 1px solid rgba(212, 175, 55, 0.2);
            margin-top: 40px;
        }

        footer p {
            font-size: 0.85rem;
            color: #666666;
            margin-top: 10px;
        }

        /* --- MOBILE RESPONSIVENESS --- */
        @media (max-width: 768px) {
            header {
                flex-direction: column;
                gap: 20px;
                padding: 20px;
            }
            nav ul {
                flex-direction: column;
                text-align: center;
                gap: 15px;
            }
        }
   


/* --- HD DOWNLOAD BUTTON --- */
.download-action {
    margin-top: 15px;
    text-align: center; /* Keeps the button perfectly centered under the video */
}

.hd-download-btn {
    display: inline-block;
    background-color: transparent;
    color: #D4AF37; /* Signature Gold */
    border: 1px solid #D4AF37;
    padding: 12px 28px;
    font-size: 0.85rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hd-download-btn:hover {
    background-color: #D4AF37;
    color: #0a0a0a; /* Obsidian Black text on hover */
    transform: translateY(-2px); /* Slight lift effect */
}



/* --- TRIBUTE FORM STYLING --- */
.vault-guestbook-section {
    max-width: 800px;
    margin: 60px auto;
    padding: 40px;
    background-color: #111111;
    border-top: 2px solid #D4AF37;
    text-align: center;
}

.tribute-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 20px;
}

.tribute-form input, .tribute-form textarea {
    width: 100%;
    padding: 15px;
    background-color: #0a0a0a;
    border: 1px solid rgba(212, 175, 55, 0.3);
    color: #ffffff;
    font-family: inherit;
}

.tribute-form input:focus, .tribute-form textarea:focus {
    outline: none;
    border-color: #D4AF37;
}

.submit-btn {
    background-color: #D4AF37;
    color: #0a0a0a;
    border: none;
    padding: 15px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background-color: #ffffff;
    color: #0a0a0a;
}



/* --- APPROVED TRIBUTE CARDS --- */
.approved-tributes {
    margin-bottom: 40px;
}

.tribute-card {
    background-color: rgba(212, 175, 55, 0.05);
    border-left: 4px solid #D4AF37;
    padding: 20px 30px;
    margin-bottom: 15px;
    text-align: left;
}

.tribute-text {
    font-style: italic;
    color: #cccccc;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 10px;
}

.tribute-author {
    color: #D4AF37;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}




/* --- VAULT STANDARD VIDEO SIZING --- */
.vault-video-container {
 
display: block !important   
max-width: 600px; !important; /* Change this to 600px or 900px depending on your preferred vault size */
   
width: 90% !important;  
margin: 0 auto 30px auto !important; /* Centers the container and adds space below */
 
text-align: center;

}


.vault-standard-video {

display: block !important;
margin: 0 auto !important;
width: 100% !important; /* Ensures it fills the 800px container but goes no further */
 
max-width: 600px !important;
height: auto !important; /* Keeps the aspect ratio from stretching */
    
border: 2px solid #D4AF37 !important; /* Optional: Adds a subtle gold border */
    
border-radius: 4px !important; /* Optional: slightly softens the sharp corners */
    
background-color: #000 !important; /* Keeps a clean black background before the video loads */
}








/* --- Preproduction --- */

/* ==========================================================
   YOUR STORY, YOUR SONG - PRE-PRODUCTION FORM STYLES
   ========================================================== */

:root {
  --bg-card: #121214;
  --bg-input: #1a1a1e;
  --text-main: #f4f4f5;
  --text-muted: #a1a1aa;
  --accent-color: #d4af37; /* Warm Gold Accent */
  --accent-hover: #e5be38;
  --border-color: #27272a;
  --focus-glow: rgba(212, 175, 55, 0.25);
  --radius-sm: 8px;
  --radius-lg: 16px;
  --transition: all 0.25s ease-in-out;
}

/* Form Container Card */
.brief-form {
  max-width: 680px;
  margin: 40px auto;
  padding: 40px;
  background-color: var(--bg-card);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
  color: var(--text-main);
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Section Headings */
.brief-form h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--accent-color);
  margin-top: 32px;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--border-color);
}

.brief-form h3:first-of-type {
  margin-top: 0;
}

/* Labels */
.brief-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-main);
  margin-bottom: 8px;
  margin-top: 18px;
}

/* Inputs, Textareas & Selects */
.brief-form input[type="text"],
.brief-form input[type="email"],
.brief-form input[type="tel"],
.brief-form input[type="date"],
.brief-form textarea {
  width: 100%;
  padding: 12px 16px;
  background-color: var(--bg-input);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  font-size: 0.95rem;
  font-family: inherit;
  box-sizing: border-box;
  transition: var(--transition);
}

.brief-form input::placeholder,
.brief-form textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.7;
}

/* Focus States */
.brief-form input:focus,
.brief-form textarea:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 0 0 0 4px var(--focus-glow);
  background-color: #202025;
}

/* Textarea Customization */
.brief-form textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

/* Date Picker Dark Mode Fix */
.brief-form input[type="date"]::-webkit-calendar-picker-indicator {
  filter: invert(0.8);
  cursor: pointer;
}

/* Submit Button */
.brief-form .submit-btn {
  width: 100%;
  margin-top: 36px;
  padding: 16px 24px;
  background-color: var(--accent-color);
  color: #000000;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border: none;
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: var(--transition);
}

.brief-form .submit-btn:hover {
  background-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.3);
}

.brief-form .submit-btn:active {
  transform: translateY(0);
}

/* Responsive Adjustments */
@media (max-width: 600px) {
  .brief-form {
    padding: 24px 18px;
    margin: 20px 12px;
  }
}



.page-heading {
  text-align: center;
  margin: 40px auto 10px auto;
  max-width: 680px;
  padding: 0 20px;
}

.page-heading h1 {
  font-size: 2.2rem;
  color: #d4af37; /* Warm Gold */
  margin-bottom: 12px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.page-heading p {
  color: #a1a1aa;
  font-size: 1.05rem;
  line-height: 1.6;
}





