/* =========================================
   1. VARIABLES & BASE STYLES
   ========================================= */
:root {
    --brand-red: #940C03;
    --bg-white: #FFFFFF;
    --text-black: #1A1A1A;
    --font-main: 'Alumni Sans SC', sans-serif;
    --font-header: 'Alumni Sans SC', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-transform: lowercase;
}

body {
    font-family: var(--font-main);
    color: var(--text-black);
    background-color: var(--bg-white);
    line-height: 1.6;
    font-size: 22px;
}

a {
    text-decoration: none;
    color: var(--text-black);
}

/* =========================================
   2. HOME PAGE (Hero & Navigation)
   ========================================= */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column; 
    background-color: var(--brand-red);
    padding-bottom: 30px;
}

.hero-compact {
    min-height: 65vh !important;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('background.png'); 
    background-repeat: no-repeat;
    background-size: 100%; 
    background-position: 70% 50%; 
    opacity: 0.49;
    z-index: 0;
}

header {
    width: 100%;
    position: relative;
    z-index: 1;
    border-bottom: 1.2px solid rgba(211, 211, 211, 0.5);
    background-color: var(--brand-red);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 50px;
    background-color: transparent; 
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 65px;
    width: auto;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--bg-white);
    font-weight: 500;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    opacity: 0.8;
}

.hero-content {
    margin: 60px auto 35px auto; 
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    width: 100%;
    background-color: rgba(60, 60, 60, 0.5); 
    padding: 25px 20px; 
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-family: var(--font-header);
    font-size: 48px;
    margin-bottom: 15px;
    color: var(--bg-white);
    line-height: 1.2;
}

.hero p {
    font-size: 26px;
    margin-bottom: 20px;
    color: var(--bg-white);
    font-weight: 500;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 15px 30px;
    font-size: 22px;
    font-weight: bold;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.btn-primary {
    background-color: var(--bg-white);
    color: var(--brand-red);
}

.btn-primary:hover {
    background-color: #f4f4f4;
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--bg-white);
    color: var(--bg-white);
}

.btn-secondary:hover {
    background-color: var(--bg-white);
    color: var(--brand-red);
}

.quick-links {
    padding: 80px 20px;
    background-color: #fafafa; 
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.quick-links h2 {
    text-align: center;
    margin-bottom: 50px;
    color: var(--brand-red);
    font-size: 40px;
}

.grid-3 {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.card {
    background: var(--bg-white);
    padding: 30px;
    border: 1px solid #eee;
    border-radius: 8px;
    width: 33%;
    text-align: center;
}

.card-link {
    text-decoration: none;
    transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.card-link:hover {
    transform: translateY(-3px);
    border-color: var(--brand-red);
    box-shadow: 0 6px 16px rgba(0,0,0,0.06);
}

.card-link h3 {
    margin-bottom: 0;
    color: var(--brand-red);
    font-size: 28px;
}

.text-link {
    color: var(--brand-red);
    font-weight: bold;
}

.text-link:hover {
    text-decoration: underline;
}

/* =========================================
   3. INTERNAL PAGES & FORMS (Custom Orders)
   ========================================= */
.page-header {
    background-color: var(--brand-red);
}

.form-section {
    padding: 60px 20px;
    background-color: var(--bg-white);
    text-align: center;
}

.form-container {
    max-width: 900px;
    margin: 0 auto;
    background-color: transparent;
    padding: 20px 0;
}

.form-container h2 {
    font-family: var(--font-main);
    color: var(--text-black);
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: bold;
}

/* --- FORM STYLES --- */
.form-group {
    margin-bottom: 15px;
}

.form-control {
    width: 100%;
    padding: 15px;
    border: 1px solid #dcdcdc;
    font-family: var(--font-main);
    font-size: 22px;
    background-color: var(--bg-white);
    color: var(--text-black);
    outline: none;
}

.form-control:focus {
    border-color: var(--brand-red);
}

.form-control::placeholder {
    color: #888888; 
    opacity: 1;
}

select.form-control {
    cursor: pointer;
    appearance: auto;
}

select.form-control:invalid {
    color: #888888;
}

textarea.form-control {
    resize: vertical;
    min-height: 250px;
    font-family: 'Alumni Sans', sans-serif;
    text-transform: none;
    font-size: 24px;
}

/* --- SUBMIT BUTTON ALIGNMENT --- */
.submit-container {
    display: flex;
    justify-content: flex-end;
    width: 100%;
}

.btn-form {
    background-color: var(--brand-red);
    color: var(--bg-white);
    width: 140px;
    padding: 14px 0;
    cursor: pointer;
    border: none;
    margin-top: 5px;
    font-weight: bold;
    letter-spacing: 1px;
}

.btn-form:hover {
    background-color: #b55656;
}

/* --- SUCCESS MESSAGE STYLES --- */
.success-message {
    padding: 60px 20px;
    background-color: #fafafa;
    border: 1px solid #dcdcdc;
    border-radius: 4px;
    margin-top: 20px;
}

.success-message h3 {
    font-family: var(--font-header);
    color: var(--brand-red);
    font-size: 36px;
    margin-bottom: 15px;
}

.success-message p {
    font-size: 22px;
    color: #666;
    margin-bottom: 30px;
}

/* =========================================
   4. CATALOG PAGE
   ========================================= */
.catalog-section {
    padding: 60px 20px;
    background-color: #fafafa;
    min-height: calc(100vh - 105px);
}

.catalog-container {
    max-width: 1200px;
    margin: 0 auto;
    background-color: var(--bg-white);
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #dcdcdc;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.catalog-container iframe {
    width: 100% !important;
    height: 800px !important; 
    border: none !important;
    border-radius: 4px;
    display: block;
}

@media (max-width: 768px) {
    .catalog-container iframe {
        height: 500px !important;
    }
}

/* =========================================
   5. UNIFIED SHOWCASE - OPTION 1 (Wide Panoramic Strip Showcase)
   ========================================= */
.unified-showcase-opt1 {
    padding: 30px 20px 50px 20px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #e0e0e0;
}

.unified-banner-container {
    max-width: 1240px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.unified-banner-title {
    text-align: center;
    font-size: 32px;
    color: var(--brand-red);
    padding: 18px 20px 10px 20px;
    font-weight: bold;
}

.unified-images-row {
    display: flex;
    gap: 15px;
    padding: 0 20px;
    height: 320px;
}

.unified-img-col {
    flex: 1;
    height: 100%;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #eee;
}

.unified-img-col img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.unified-img-col:hover img {
    transform: scale(1.03);
}

.unified-banner-footer {
    padding: 20px 30px;
    text-align: center;
    background-color: #fafafa;
    border-top: 1px solid #eeeeee;
}

.unified-banner-footer p {
    font-size: 22px;
    color: #444444;
    margin-bottom: 15px;
}

.unified-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

/* =========================================
   6. UNIFIED SHOWCASE - OPTION 2 (Overlapping Hero Showcase Banner)
   ========================================= */
.unified-showcase-opt2 {
    padding: 40px 20px;
    background-color: #ffffff;
}

.floating-showcase-card {
    max-width: 1200px;
    margin: 0 auto;
    background-color: #ffffff;
    border: 2px solid var(--brand-red);
    border-radius: 10px;
    padding: 25px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    text-align: center;
}

.floating-showcase-title {
    font-size: 34px;
    color: var(--brand-red);
    margin-bottom: 15px;
    font-weight: bold;
}

.floating-images-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
    height: 300px;
}

.floating-img-box {
    position: relative;
    height: 100%;
    overflow: hidden;
    border-radius: 6px;
    border: 1px solid #e0e0e0;
}

.floating-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.floating-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    background-color: rgba(26, 26, 26, 0.85);
    color: #ffffff;
    padding: 6px 16px;
    font-size: 20px;
    border-radius: 4px;
    font-weight: bold;
}

.floating-desc {
    font-size: 22px;
    color: #444444;
    margin-bottom: 15px;
}

@media (max-width: 768px) {
    .unified-images-row, .floating-images-grid {
        flex-direction: column;
        grid-template-columns: 1fr;
        height: auto;
    }
    .unified-img-col, .floating-img-box {
        height: 220px;
    }
}