/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Professional Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0a0a0a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
    animation: preloaderFloat 3s ease-in-out infinite;
}

@keyframes preloaderFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

.preloader-logo {
    margin-bottom: 20px;
    position: relative;
}

.preloader-logo-img {
    height: 80px;
    width: auto;
    object-fit: contain;
    filter: brightness(0) invert(1) drop-shadow(0 8px 25px rgba(255, 255, 255, 0.2));
    animation: logoGlow 2s ease-in-out infinite alternate;
}

@keyframes logoGlow {
    0% {
        filter: brightness(0) invert(1) drop-shadow(0 8px 25px rgba(255, 255, 255, 0.2));
        transform: scale(1);
    }
    100% {
        filter: brightness(0) invert(1) drop-shadow(0 12px 35px rgba(255, 255, 255, 0.4));
        transform: scale(1.02);
    }
}

.preloader-text {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 300;
    color: #ffffff;
    margin-bottom: 30px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.8;
}

.preloader-spinner {
    position: relative;
    width: 40px;
    height: 40px;
    margin: 0 auto;
}

.spinner-ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 1px solid transparent;
    border-top: 1px solid #ffffff;
    border-radius: 50%;
    animation: spinRing 1.5s linear infinite;
    opacity: 0.7;
}

.spinner-ring:nth-child(1) {
    animation-delay: 0s;
}

.spinner-ring:nth-child(2) {
    animation-delay: -0.5s;
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
}

.spinner-ring:nth-child(3) {
    animation-delay: -1s;
    width: 60%;
    height: 60%;
    top: 20%;
    left: 20%;
}

@keyframes spinRing {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

/* Global Styles */
html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: #0a0a0a;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}



/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 60px 0 80px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/background2.png');
    background-size: 80%;
    background-position: center center;
    background-attachment: fixed;
    filter: sepia(15%) contrast(70%) brightness(40%) saturate(60%) hue-rotate(20deg);
    z-index: -2;
}

.hero-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(26, 26, 26, 0.88) 20%,
        rgba(10, 10, 10, 0.90) 40%,
        rgba(26, 26, 26, 0.85) 60%,
        rgba(10, 10, 10, 0.92) 80%,
        rgba(0, 0, 0, 0.97) 100%
    );
    z-index: -1;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-content {
    max-width: 600px;
}

.hero-title {
    font-family: 'Inter', sans-serif;
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 0.9;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #f5f1e8 0%, #ffffff 30%, #e8ddd4 70%, #f5f1e8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.hero-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #c4b59a;
    margin-bottom: 16px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #b8a888;
    margin-bottom: 48px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    margin-top: 48px;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: transparent;
    border: 1px solid rgba(245, 241, 232, 0.3);
    color: #f5f1e8;
    text-decoration: none;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 241, 232, 0.1), transparent);
    transition: left 0.5s ease;
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    border-color: rgba(245, 241, 232, 0.5);
    background: rgba(245, 241, 232, 0.05);
    transform: translateX(8px);
}

.cta-button svg {
    transition: transform 0.3s ease;
}

.cta-button:hover svg {
    transform: translate(4px, -4px);
}

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.visual-element {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle at 30% 30%, rgba(245, 241, 232, 0.12) 0%, rgba(232, 221, 212, 0.08) 50%, transparent 70%);
    border: 1px solid rgba(245, 241, 232, 0.15);
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}

.visual-element::before {
    content: '';
    position: absolute;
    top: 20%;
    left: 20%;
    width: 60%;
    height: 60%;
    background: linear-gradient(135deg, rgba(245, 241, 232, 0.08) 0%, rgba(196, 181, 154, 0.05) 50%, transparent 100%);
    border-radius: 4px;
    animation: visualFloat 6s ease-in-out infinite;
}

@keyframes visualFloat {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* About Section */
.about-section {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('assets/background.jpg');
    background-size: cover;
    background-position: center bottom;
    background-attachment: fixed;
    filter: sepia(20%) contrast(60%) brightness(25%) saturate(40%) hue-rotate(30deg);
    z-index: -2;
}

.about-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.97) 0%,
        rgba(10, 10, 10, 0.93) 20%,
        rgba(26, 26, 26, 0.90) 50%,
        rgba(10, 10, 10, 0.93) 80%,
        rgba(0, 0, 0, 0.97) 100%
    );
    z-index: -1;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    font-style: italic;
    background: linear-gradient(135deg, #f5f1e8 0%, #ffffff 50%, #e8ddd4 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    line-height: 1.1;
}

.section-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #f5f1e8;
    margin-bottom: 48px;
}

.section-description {
    font-family: 'Inter', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.7;
    color: #d4c4b0;
    margin-bottom: 32px;
}

.company-info {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.6;
    color: #c4b59a;
    max-width: 600px;
    margin: 0 auto;
}

/* Footer */
.footer {
    padding: 60px 0;
    background: #0a0a0a;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.footer p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 300;
    color: #b8a888;
    letter-spacing: 0.05em;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-title {
        font-size: 3.5rem;
    }
    
    .visual-element {
        width: 300px;
        height: 300px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        padding: 40px 0 60px;
    }
    
    .hero-section::before {
        background-size: cover;
        background-position: center center;
    }
    
    .about-section::before {
        background-size: cover;
        background-position: center center;
    }
    
    .hero-container {
        padding: 0 20px;
        gap: 40px;
        margin-bottom: 40px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-tagline {
        font-size: 0.8rem;
    }
    
    .cta-button {
        padding: 14px 28px;
        font-size: 0.8rem;
    }
    
    .visual-element {
        width: 250px;
        height: 250px;
    }
    
    .about-section {
        padding: 80px 0;
    }
    
    .about-container {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .section-subtitle {
        font-size: 1.8rem;
    }
    
    .section-description {
        font-size: 1.1rem;
    }
    
    .footer {
        padding: 60px 0 60px;
        margin-top: 40px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 30px 0 50px;
    }
    
    .hero-section::before {
        background-size: cover;
        background-position: center center;
    }
    
    .about-section::before {
        background-size: cover;
        background-position: center center;
    }
    
    .hero-container {
        margin-bottom: 50px;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero-tagline {
        font-size: 0.75rem;
    }
    
    .cta-button {
        padding: 12px 24px;
        font-size: 0.75rem;
    }
    
    .visual-element {
        width: 200px;
        height: 200px;
    }
    
    .about-section {
        padding: 60px 0;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1.5rem;
    }
    
    .section-description {
        font-size: 1rem;
    }
    
    .footer {
        padding: 120px 0 120px;
        margin-top: 90px;
    }
    
    .preloader-logo-img {
        height: 60px;
    }
    
    .preloader-text {
        font-size: 0.9rem;
    }
    
    .preloader-spinner {
        width: 30px;
        height: 30px;
    }
}

/* Extra Small Mobile Devices */
@media (max-width: 360px) {
    .hero-section {
        padding: 20px 0 40px;
    }
    
    .hero-section::before {
        background-size: cover;
        background-position: center center;
    }
    
    .about-section::before {
        background-size: cover;
        background-position: center center;
    }
    
    .hero-container {
        margin-bottom: 60px;
        padding: 0 15px;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.8rem;
    }
    
    .hero-tagline {
        font-size: 0.7rem;
    }
    
    .about-container {
        padding: 0 15px;
    }
    
    .footer {
        padding: 100px 0 80px;
        margin-top: 80px;
    }
    
    .footer-container {
        padding: 0 15px;
    }
}