﻿/* ========================================
 REGALIA FORTUNE HOLDING LTD. - STYLES
 ======================================== */


/* CSS Variables */

:root {
    --primary-gold: #C5A059;
    --gold-accent: #D4B46F;
    --gold-dark: #8C6E30;
    --background-dark: #050505;
    --surface-dark: #0A0A0A;
    --surface-accent: #121212;
    --border-dark: #1F1F1F;
    --text-muted: #888888;
    --text-light: #d1d5db;
}


/* Base Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background-dark);
    color: var(--text-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


/* Typography */

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Playfair Display', serif;
}


/* Selection */

::selection {
    background-color: rgba(197, 160, 89, 0.2);
    color: var(--primary-gold);
}


/* Scrollbar */

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--background-dark);
}

::-webkit-scrollbar-thumb {
    background: var(--border-dark);
    border-radius: 4px;
}

 ::-webkit-scrollbar-thumb:hover {
    background: #333;
}


/* Utilities */

.z-index-10 {
    z-index: 10;
}


/* Gold Gradient Text */

.gold-gradient-text {
    background: linear-gradient(135deg, #F0D595 0%, #C5A059 40%, #8C6E30 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.text-primary-gold {
    color: rgba(197, 160, 89, 0.8);
}

.text-highlight {
    color: white;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    padding-bottom: 2px;
}


/* Subtle Glow Effect */

.subtle-glow {
    transition: all 0.5s ease;
}

.subtle-glow:hover {
    box-shadow: 0 0 25px rgba(197, 160, 89, 0.08);
    border-color: rgba(197, 160, 89, 0.4) !important;
}


/* ========================================
 NAVIGATION
 ======================================== */

.navbar {
    padding: .25rem 0;
    transition: all 0.3s ease;
}

.bg-dark-custom {
    background-color: rgb(5 5 5 / 30%) !important;
}

.backdrop-blur {
    backdrop-filter: blur(12px);
}

.border-bottom-custom {
    border-bottom: 1px solid var(--border-dark) !important;
}

.logo-img {
    width: 100%;
    height: 75px;
    object-fit: cover;
}

.brand-title {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.1em;
    color: white;
    text-transform: uppercase;
    line-height: 1;
}

.brand-subtitle {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: rgba(197, 160, 89, 0.8);
    text-transform: uppercase;
    margin-top: 4px;
}

.nav-links .nav-link {
    font-size: 0.79rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 600;
    transition: color 0.3s ease;
    color: #9ca3af !important;
}

.nav-links .nav-link:hover {
    color: var(--primary-gold) !important;
}

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler .material-symbols-outlined {
    color: white;
    font-size: 1.5rem;
}


/* ========================================
 HERO SECTION
 ======================================== */

.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8rem 1.5rem 4rem;
    background-color: var(--background-dark);
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(var(--primary-gold) 1px, transparent 1px);
    background: url('../images/hero-bg.jpg');
    opacity: 0.25;
    background-size: cover;
    background-repeat: no-repeat;
}

.hero-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(197, 160, 89, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.hero-logo {
    width: 160px;
    height: 160px;
    margin: 0 auto;
    transition: opacity 0.7s ease;
}

.hero-logo:hover {
    opacity: 1 !important;
}

.hero-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 25px 25px rgba(0, 0, 0, 0.3));
    opacity: 0.9;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 400;
    color: white;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.hero-divider {
    width: 100%;
    max-width: 300px;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(197, 160, 89, 0.4), transparent);
}

.hero-subtitle {
    font-size: 1.5rem;
    color: #9ca3af;
    line-height: 1.6;
}

.hero-location {
    font-size: 1.35rem;
    color: rgba(197, 160, 89, 0.6);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-weight: 300;
}


/* Custom Button */

.btn-custom-primary {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 2rem;
    border: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 2px;
    color: var(--primary-gold);
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    background-color: #000;
}

.btn-custom-primary:hover {
    color: white;
}

.btn-text {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    transition: transform 0.3s ease;
    position: relative;
    z-index: 2;
}

.btn-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn-custom-primary:hover .btn-text {
    transform: translateX(100%);
}

.btn-custom-primary:hover .btn-icon {
    transform: translateX(0);
}

.btn-custom-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(197, 160, 89, 0.2);
    transform: translateX(-100%);
    transition: transform 0.3s ease;
}

.btn-custom-primary:hover::before {
    transform: translateX(0);
}


/* Responsive Hero */

@media (min-width: 768px) {
    .hero-logo {
        width: 224px;
        height: 224px;
    }
    .hero-title {
        font-size: 4.5rem;
    }
    .hero-subtitle {
        font-size: 2rem;
        font-weight: 300;
    }
}

@media (min-width: 992px) {
    .hero-title {
        font-size: 3.5rem;
    }
}


/* ========================================
 SECTION COMMON STYLES
 ======================================== */

.section-label {
    display: block;
    font-size: 0.8rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--primary-gold);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: white;
    line-height: 1.3;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .section-title {
        font-size: 2.5rem;
    }
}


/* ========================================
 ABOUT SECTION
 ======================================== */

.section-about {
    background-color: var(--surface-dark);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.section-content {
    max-width: 800px;
    font-size: 1.125rem;
    color: #9ca3af;
    font-weight: 300;
    line-height: 1.8;
}

.location-grid {
    border: 1px solid var(--border-dark);
    background-color: var(--border-dark);
}

.location-card {
    background-color: var(--surface-dark);
    padding: 2.5rem;
    text-align: center;
    transition: background-color 0.3s ease;
}

.location-card:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

.location-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 0.75rem;
    transition: color 0.3s ease;
}

.location-card:hover .location-title {
    color: var(--primary-gold);
}

.location-subtitle {
    font-size: 0.86rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: #4b5563;
    margin: 0;
}


/* ========================================
 PHILOSOPHY SECTION
 ======================================== */

.section-philosophy {
    background-color: var(--background-dark);
    position: relative;
}

.philosophy-gradient {
    position: absolute;
    top: 0;
    right: 0;
    width: 33.333%;
    height: 100%;
    background: linear-gradient(to left, rgba(18, 18, 18, 0.3), transparent);
    pointer-events: none;
}

.philosophy-intro {
    font-size: 1rem;
    color: #6b7280;
    line-height: 1.6;
    border-left: 1px solid var(--border-dark);
}

.philosophy-card {
    background-color: var(--surface-accent);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    transition: all 0.5s ease;
    text-align: center;
}

.philosophy-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background-color: black;
    border: 1px solid var(--border-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: border-color 0.3s ease;
}

.philosophy-card:hover .philosophy-icon {
    border-color: rgba(197, 160, 89, 0.4);
}

.philosophy-icon .material-symbols-outlined {
    color: var(--primary-gold);
    font-size: 3.5rem;
    font-weight: 200;
}

.philosophy-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: white;
    margin-bottom: 1rem;
    transition: color 0.3s ease;
    font-weight: 400;
}

.philosophy-card:hover .philosophy-card-title {
    color: var(--primary-gold);
}

.philosophy-card-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

.philosophy-quote {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.875rem;
    color: #d1d5db;
    line-height: 1.6;
    opacity: 0.9;
}

@media (min-width: 768px) {
    .philosophy-quote {
        font-size: 1.86rem;
    }
}


/* ========================================
 STRUCTURE SECTION
 ======================================== */

.section-structure {
    background-color: var(--surface-dark);
    border-top: 1px solid var(--border-dark);
}

.structure-card {
    background-color: #212121;
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 2.5rem;
    transition: all 0.5s ease;
}

.structure-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 10px 15px rgba(197, 160, 89, 0.05);
}

.structure-card-header {
    padding-right: 2.5rem;
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .structure-card-header {
        margin-bottom: 0;
    }
}

.structure-number {
    font-family: 'Courier New', monospace;
    font-size: 1.5rem;
    color: rgba(197, 160, 89, 0.6);
    border: 1px solid rgba(197, 160, 89, 0.2);
    padding: 0.25rem 0.5rem;
    display: inline-block;
    font-weight: 600;
}

.structure-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: white;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.structure-card:hover .structure-title {
    color: var(--primary-gold);
}

.structure-location {
    font-size: 0.65rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
}

.structure-role {
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(197, 160, 89, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1.25rem;
}

.structure-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.structure-tag {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.structure-card-body {
    padding-left: 2.5rem;
    display: flex;
    align-items: center;
}

.structure-card-body p {
    font-size: 1rem;
    color: #9ca3af;
    line-height: 1.8;
    font-weight: 300;
    margin: 0;
}

.structure-summary {
    padding: 2rem;
    border: 1px solid rgba(197, 160, 89, 0.2);
    background: linear-gradient(135deg, rgba(197, 160, 89, 0.05), transparent);
    border-radius: 2px;
    text-align: center;
}

.structure-summary-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--primary-gold);
    margin-bottom: 0.75rem;
}

.structure-summary-text {
    font-size: 0.875rem;
    color: #9ca3af;
    line-height: 1.6;
    font-weight: 300;
    max-width: 800px;
    margin: 0 auto;
}


/* ========================================
 CHAIRMAN SECTION
 ======================================== */

.section-chairman {
    background-color: var(--background-dark);
}

.chairman-card {
    padding: 3rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--surface-dark);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .chairman-card {
        padding: 0px 25px 0px 25px;
    }
}

.chairman-quote-mark {
    position: absolute;
    top: 2.5rem;
    left: 2.5rem;
    font-size: 8rem;
    font-family: 'Playfair Display', serif;
    color: var(--primary-gold);
    opacity: 0.07;
    line-height: 1;
    font-weight: 900;
    user-select: none;
}

.chairman-intro {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 2rem;
}

.chairman-text {
    font-size: 1.125rem;
    color: #d1d5db;
    font-weight: 300;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.chairman-highlight {
    padding-left: 1.5rem;
    border-left: 2px solid rgba(197, 160, 89, 0.5);
    color: white;
    font-style: italic;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
    margin: 2rem 0;
}

.chairman-signature {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.chairman-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    color: var(--primary-gold);
    margin-bottom: 0.25rem;
}

.chairman-title {
    font-size: 0.65rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin: 0;
}

.chairman-location {
    font-size: 0.75rem;
    color: #6b7280;
    line-height: 1.6;
    margin: 0;
}


/* ========================================
 FOOTER SECTION
 ======================================== */

.footer-section {
    background-color: black;
    color: white;
    border-top: 1px solid var(--border-dark);
}

.footer-intro {
    color: #6b7280;
    font-size: 0.875rem;
    font-weight: 300;
    max-width: 600px;
}

.contact-card {
    padding: 2.5rem;
    border: 1px solid rgba(255, 255, 255, 0.05);
    background-color: var(--surface-dark);
    transition: border-color 0.3s ease;
}

.contact-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
}

.contact-icon {
    font-size: 2rem;
    color: rgba(197, 160, 89, 0.7);
    margin-bottom: 1.5rem;
    transition: color 0.3s ease;
}

.contact-card:hover .contact-icon {
    color: var(--primary-gold);
}

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.contact-label {
    color: var(--primary-gold);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
}

.contact-text {
    color: #9ca3af;
    font-size: 0.875rem;
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
}

.contact-link {
    color: var(--primary-gold);
    font-size: 0.875rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    padding-bottom: 2px;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: white;
    border-color: white;
}

.footer-tagline {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.875rem;
    color: #9ca3af;
    opacity: 0.8;
}

.difclogo {
    margin: 30px auto 0;
    width: auto;
    height: 60px;
}

.chairman-initials {
    width: 240px;
    height: 240px;
    background: #f5f5f5;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #666;
    overflow: hidden;
}

.chairman-initials img {
    width: calc(100%);
    height: 240px;
    object-fit: cover;
}


/* Portfolio Section Styles */

.portfolio-section {
    background-color: #0a0a0a;
    color: #ffffff;
    padding: 5rem 0;
}

@media (min-width: 768px) {
    .portfolio-section {
        padding: 8rem 0;
    }
}

.section-label {
    color: #c9a961;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.section-heading {
    font-size: 2.5rem;
    font-weight: 300;
    margin-bottom: 1rem;
}

@media (min-width: 768px) {
    .section-heading {
        font-size: 3.5rem;
    }
}

.gold-gradient {
    background: linear-gradient(135deg, #c9a961 0%, #f4e4c1 50%, #c9a961 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subheading {
    color: #a0a0a0;
    font-size: 1.125rem;
    max-width: 42rem;
    margin: 0 auto;
}

.image-card {
    position: relative;
    overflow: hidden;
    border-radius: 0.5rem;
    aspect-ratio: 7/4;
    cursor: pointer;
}

.image-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
    z-index: 1;
    transition: opacity 0.3s ease;
}

.image-card:hover::before {
    opacity: 0.9;
}

.image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-card:hover img {
    transform: scale(1.05);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    z-index: 10;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 300;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

@media (min-width: 768px) {
    .card-title {
        font-size: 1.75rem;
    }
}

.image-card:hover .card-title {
    color: #c9a961;
}

.card-subtitle {
    color: #a0a0a0;
    font-size: 0.875rem;
}

@media (min-width: 768px) {
    .footer-tagline {
        font-size: 2.25rem;
    }
}

.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.footer-logo {
    width: 64px;
    height: 64px;
    opacity: 0.8;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.footer-brand-name {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.125rem;
    letter-spacing: 0.05em;
    color: white;
    text-transform: uppercase;
    line-height: 1;
    display: block;
}

.footer-brand-subtitle {
    font-size: 0.6rem;
    letter-spacing: 0.25em;
    color: var(--primary-gold);
    text-transform: uppercase;
    line-height: 1;
    display: block;
    margin-top: 0.5rem;
}

.footer-subtitle {
    font-size: 0.6rem;
    color: #4b5563;
    text-transform: uppercase;
    letter-spacing: 0.2em;
}

.footer-copyright {
    font-size: 0.65rem;
    color: #374151;
    margin: 0;
}

.portSec {
    background-color: #bd8e33;
    padding: 8px;
    border-radius: 8px;
    background-image: linear-gradient(120deg, #d0b769 0%, #b5924e 100%);
    background-image: linear-gradient(135deg, #fdfcfb 0%, #e2d1c3 100%);
}

.contImg {
    padding-top: 10px;
    color: #414040;
    font-size: 0.875rem;
    /* color: var(--text-muted)
#888888
; */
    line-height: 1.6;
    font-weight: 300;
    margin: 0;
    padding: 26px;
}

@media (max-width: 768px) {
    .portSec {
        min-height: auto;
    }
    video#footerVideo {
        width: 100%;
    }
    .video-wrapper {
        margin-top: 95px;
    }
    .btnDnu {
        margin-top: 17px !important;
        padding-bottom: 0px !important;
    }
    span.mbTxV {
        font-size: 0px;
    }
    .topImgSec {
        width: 100% !important;
    }
    .topImgSec img {
        height: auto !important;
    }
}

.video-wrapper {
    position: relative;
}

.sound-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    z-index: 10;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    border: none;
    padding: 8px 16px;
    border-radius: 30px;
    cursor: pointer;
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.sound-btn.show {
    opacity: 1;
    transform: translateY(0);
}

.sound-btn:hover {
    background: rgba(0, 0, 0, 0.85);
}

video#footerVideo {
    width: 100%;
}

.btnDnu {
    margin: 0 auto;
    text-align: center;
    margin-top: -160px;
    padding-bottom: 60px;
}

.contact-form-section {
    background: #bb9a5b;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.contact-form-section h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #1a1a1a;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333;
    margin-bottom: 0.5rem;
    display: block;
}

.form-group label .required {
    color: #d4a574;
}

.form-control {
    width: 100%;
    padding: 0.9rem 1rem;
    border: 1px solid #cea75d;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
    background-color: #dabc83;
}

.form-control:focus {
    outline: none;
    border-color: #d4a574;
    box-shadow: 0 0 0 3px rgba(212, 165, 116, 0.1);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: #8e6e30;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.submit-btn:hover {
    background: #685125;
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 165, 116, 0.3);
}

.topImgSec {
    width: 918px;
    background: #f5f5f5;
    border-radius: 5px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 600;
    color: #666;
    overflow: hidden;
    margin-top: 50px;
}

.topImgSec img {
    width: calc(100%);
    height: 200px;
    opacity: 0.3;
}