:root {
    --navy: #151E3F;
    --navy-light: #1C274F;
    --gold: #D4B971;
    --gold-light: #E6CD8C;
    --white: #FFFFFF;
}
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--navy);
    color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    font-family: 'Playfair Display', serif;
}

.text-nowrap{
    text-wrap-mode: nowrap;
}

.header {
    background-color: rgba(21, 30, 63, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 1000;
    transition: all 0.4s ease-in-out;
}

.header.scrolled {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.header.scrolled img{
    width: 160px;
}
.nav-link {
    position: relative;
    transition: color 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--gold);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold);
}

.nav-link:hover::after {
    width: 100%;
}

.hero {
    min-height: 100vh;
    background: linear-gradient(to bottom, rgb(21 30 63 / 66%), rgb(21 30 63 / 54%)), 
                url('../images/banner.webp');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.btn-primary {
    background-color: var(--gold);
    color: var(--navy);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary:hover {
    background-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(212, 185, 113, 0.3);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.5s ease, height 0.5s ease;
}

.btn-primary:hover::after {
    width: 100%;
    height: 300px;
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    width: 50%;
    height: 3px;
    background-color: var(--gold);
    bottom: -10px;
    left: 0;
}

.service-card {
    background-color: var(--navy-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 185, 113, 0.1);
    transform: translateY(0);
    opacity: 0;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 15px rgba(212, 185, 113, 0.3);
    border-color: var(--gold);
}

.service-icon {
    color: var(--gold);
    transition: all 0.3s ease;
}

/* .service-card:hover .service-icon {
    transform: scale(1.1);
} */
.list-card {
    background-color: var(--navy-light);
    transition: all 0.3s ease;
    border: 1px solid rgba(212, 185, 113, 0.1);
    transform: translateY(0);
    opacity: 0;
}

.list-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border-color: var(--gold);
}
.parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 120%;
    z-index: 0;
}

.animated-line {
    width: 0;
    height: 3px;
    background-color: var(--gold);
    transition: width 1.5s ease;
}

.footer {
    background-color: var(--navy-light);
    border-top: 1px solid rgba(212, 185, 113, 0.2);
}
.footer ion-icon{
    min-width: 16px;
}

.social-icon {
    color: var(--white);
    transition: all 0.3s ease;
}

.social-icon:hover {
    /* color: var(--gold); */
    background-color: var(--gold);
    border-color: var(--gold);
    box-shadow: 0 6px 15px rgba(212, 185, 113, 0.3);
    transform: translateY(-3px);
}

.text-reveal {
    display: inline-block;
    overflow: hidden;
}

.text-reveal span {
    display: inline-block;
    transform: translateY(100%);
    opacity: 0;
}

/* Decorative elements */
.gold-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background-color: var(--gold);
    margin: 0 4px;
}

.gold-line {
    width: 40px;
    height: 2px;
    background-color: var(--gold);
    margin: 0 10px;
}

.bg-dots {
    position: absolute;
    width: 300px;
    height: 300px;
    background-image: radial-gradient(var(--gold) 1px, transparent 2px);
    background-size: 20px 20px;
    opacity: 0.1;
    z-index: -1;
}

.logo-container {
    position: relative;
    overflow: hidden;
}

.logo-container::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(212, 185, 113, 0.1), transparent);
    transform: rotate(45deg);
    animation: shimmer 3s infinite linear;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%) rotate(45deg);
    }
    100% {
        transform: translateX(100%) rotate(45deg);
    }
}

/* Mobile menu styles */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--navy);
    z-index: 2000;
    transition: right 0.4s ease;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu.open {
    right: 0;
}

.backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.7);
    z-index: 1500;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease;
}

.backdrop.open {
    opacity: 1;
    visibility: visible;
}

.cta-section .bg-cover{
    background-image: url(/images/cta.webp);
}
#about,#contact{
    scroll-margin-top: 200px;
}
#contact ion-icon{
    color: var(--gold);
}
