/* Global Styles */
:root {
    --primary-color: #9d7553;
    --secondary-color: #d4af7a;
    --dark-color: #1a1a1a;
    --light-color: #f9f9f9;
    --accent-color: #e0c9a6;
    --gold-gradient: linear-gradient(135deg, #d4af7a, #9d7553);
    --title-font: 'Playfair Display', serif;
    --body-font: 'Montserrat', sans-serif;
    --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font);
    background-color: var(--light-color);
    color: var(--dark-color);
    overflow-x: hidden;
    line-height: 1.6;
}

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

a {
    text-decoration: none;
    color: inherit;
}

/* Preloader */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--dark-color);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 1s ease;
}

.preloader-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.logo-preloader {
    font-family: var(--title-font);
    font-size: 3rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 30px;
    letter-spacing: 2px;
    position: relative;
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 0 0 5px var(--secondary-color), 0 0 10px var(--secondary-color);
    }
    to {
        text-shadow: 0 0 15px var(--secondary-color), 0 0 20px var(--secondary-color), 0 0 25px var(--secondary-color);
    }
}

.loading-bar {
    width: 250px;
    height: 4px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.loading-bar-progress {
    height: 100%;
    background: var(--gold-gradient);
    width: 0;
    transition: width 0.3s ease;
    position: relative;
    border-radius: 10px;
}

.loading-text {
    color: var(--secondary-color);
    font-size: 0.9rem;
    margin-top: 20px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 300;
    opacity: 0.8;
}

.fade-out {
    opacity: 0;
}

.main-container {
    opacity: 1;
    transition: opacity 1s ease;
}

.main-container.hidden {
    opacity: 0;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 25px 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: var(--transition);
}

.navbar.scrolled {
    background-color: rgba(26, 26, 26, 0.95);
    padding: 15px 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo-icon {
    font-family: var(--title-font);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    transition: var(--transition);
}

.navbar.scrolled .logo-icon {
    font-size: 1.5rem;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-link {
    color: white;
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--secondary-color);
    transition: var(--transition);
}

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

.social-nav {
    display: flex;
    gap: 15px;
}

.social-icon {
    color: white;
    font-size: 1rem;
    transition: var(--transition);
}

.social-icon:hover {
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Hero Section */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    color: white;
    text-align: center;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--dark-color) 25%, transparent 25%) -50px 0,
                linear-gradient(225deg, var(--dark-color) 25%, transparent 25%) -50px 0,
                linear-gradient(315deg, var(--dark-color) 25%, transparent 25%),
                linear-gradient(45deg, var(--dark-color) 25%, transparent 25%);
    background-size: 100px 100px;
    background-color: var(--dark-color);
    opacity: 0.05;
    z-index: 0;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
    z-index: 2;
}

.hero-title {
    font-family: var(--title-font);
    font-size: 5rem;
    font-weight: 700;
    letter-spacing: 5px;
    margin-bottom: 20px;
    color: white;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-divider {
    width: 100px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 20px auto 30px;
    position: relative;
}

.hero-divider::before,
.hero-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.hero-divider::before {
    left: -15px;
}

.hero-divider::after {
    right: -15px;
}

.hero-subtitle {
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 3px;
    margin-bottom: 40px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 40px;
    background: var(--gold-gradient);
    color: white;
    border-radius: 0;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    border: none;
    font-size: 0.9rem;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: var(--transition);
}

.cta-button:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button span {
    position: relative;
    z-index: 2;
    margin-right: 10px;
}

.cta-button i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.cta-button:hover i {
    transform: translateX(5px);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 2;
    animation: fadeIn 1s 2s backwards;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    position: relative;
    margin-bottom: 10px;
}

.wheel {
    position: absolute;
    width: 4px;
    height: 10px;
    background-color: white;
    left: 50%;
    top: 10px;
    transform: translateX(-50%);
    border-radius: 2px;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

.arrows {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.arrow-down {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgba(255, 255, 255, 0.6);
    border-bottom: 2px solid rgba(255, 255, 255, 0.6);
    transform: rotate(45deg);
    margin: -5px 0;
    animation: arrow-wave 1s infinite;
    animation-direction: alternate;
}

.arrow-down:nth-child(1) {
    animation-delay: 0.1s;
}

.arrow-down:nth-child(2) {
    animation-delay: 0.3s;
}

@keyframes arrow-wave {
    0% {
        opacity: 0.4;
        transform: rotate(45deg) translate(-2px, -2px);
    }
    100% {
        opacity: 0.9;
        transform: rotate(45deg) translate(2px, 2px);
    }
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-family: var(--title-font);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--dark-color);
    margin-bottom: 20px;
    position: relative;
}

.section-divider {
    width: 80px;
    height: 3px;
    background: var(--gold-gradient);
    margin: 0 auto 20px;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background-color: var(--secondary-color);
    border-radius: 50%;
}

.section-divider::before {
    left: -12px;
}

.section-divider::after {
    right: -12px;
}

.section-subtitle {
    font-size: 1.1rem;
    font-weight: 300;
    color: #777;
    max-width: 700px;
    margin: 0 auto;
}

.section-header.light .section-title,
.section-header.light .section-subtitle {
    color: white;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.about-content {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

.about-image {
    flex: 1;
    min-width: 300px;
    position: relative;
}

.image-frame {
    height: 450px;
    background: url('https://images.pexels.com/photos/994523/pexels-photo-994523.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
    position: relative;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.image-decoration {
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100%;
    height: 100%;
    border: 3px solid var(--secondary-color);
    z-index: -1;
}

.about-text {
    flex: 1;
    min-width: 300px;
}

.about-text h3 {
    font-family: var(--title-font);
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--dark-color);
    position: relative;
    display: inline-block;
}

.about-text h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gold-gradient);
}

.luxury-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.text-button {
    display: inline-flex;
    align-items: center;
    color: var(--primary-color);
    font-weight: 600;
    transition: var(--transition);
    position: relative;
}

.text-button::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: var(--transition);
}

.text-button:hover {
    color: var(--primary-color);
}

.text-button:hover::after {
    width: 100%;
}

.text-button span {
    margin-right: 10px;
}

.text-button:hover i {
    transform: translateX(5px);
}

.text-button i {
    transition: transform 0.3s ease;
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--dark-color);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background-color: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: white;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 30px rgba(0, 0, 0, 0.2);
    background-color: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
    height: 80px;
    width: 80px;
    line-height: 80px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    margin: 0 auto 25px;
    position: relative;
    transition: var(--transition);
}

.feature-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background-color: var(--primary-color);
    transform: rotateY(180deg);
}

.feature-card:hover .feature-icon::after {
    opacity: 1;
    transform: scale(1.1);
}

.feature-title {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.feature-text {
    font-size: 0.95rem;
    opacity: 0.7;
    line-height: 1.7;
}

/* Contact Section */
.contact-section {
    padding: 100px 0;
    background: linear-gradient(rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.8)), url('https://images.pexels.com/photos/5872298/pexels-photo-5872298.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat fixed;
    color: white;
    position: relative;
}

.contact-cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-bottom: 60px;
}

.contact-card {
    background-color: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px 30px;
    text-align: center;
    width: 300px;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 20px;
    color: var(--secondary-color);
    font-size: 1.5rem;
    transition: var(--transition);
}

.contact-card:hover .contact-icon {
    background-color: var(--primary-color);
    color: white;
}

.contact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-card p {
    opacity: 0.7;
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact-button {
    display: inline-block;
    padding: 10px 25px;
    background-color: var(--secondary-color);
    color: white;
    font-weight: 600;
    border-radius: 2px;
    transition: var(--transition);
}

.contact-button:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
}

.cta-banner {
    background: var(--gold-gradient);
    padding: 40px;
    border-radius: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
}

.cta-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.cta-content p {
    opacity: 0.8;
}

.banner-button {
    display: inline-flex;
    align-items: center;
    background-color: white;
    color: var(--dark-color);
    padding: 15px 30px;
    border-radius: 2px;
    font-weight: 600;
    transition: var(--transition);
}

.banner-button:hover {
    background-color: var(--dark-color);
    color: white;
    transform: translateY(-3px);
}

.banner-button i {
    margin-right: 10px;
}

/* Footer */
.footer {
    background-color: var(--dark-color);
    color: white;
    padding: 80px 0 30px;
}

.footer-content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 50px;
}

.footer-logo {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.footer-logo-icon {
    font-family: var(--title-font);
    font-size: 2rem;
    color: var(--secondary-color);
    margin-right: 15px;
}

.footer-logo-text h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.footer-logo-text p {
    font-size: 0.9rem;
    opacity: 0.5;
}

.footer-info {
    margin: 20px 0;
}

.footer-info p {
    margin-bottom: 15px;
    font-size: 0.95rem;
    opacity: 0.7;
    display: flex;
    align-items: center;
}

.footer-info i {
    margin-right: 10px;
    color: var(--secondary-color);
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    transition: var(--transition);
}

.footer-social-link:hover {
    background-color: var(--secondary-color);
    transform: translateY(-5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.9rem;
    opacity: 0.5;
}

/* Animation Classes */
.reveal-up, .reveal-left, .reveal-right {
    opacity: 0;
    transition: all 1s cubic-bezier(0.5, 0, 0, 1);
}

.reveal-up {
    transform: translateY(50px);
}

.reveal-left {
    transform: translateX(-50px);
}

.reveal-right {
    transform: translateX(50px);
}

.revealed {
    opacity: 1;
    transform: translate(0);
}

.delay-1 {
    transition-delay: 0.2s;
}

.delay-2 {
    transition-delay: 0.4s;
}

/* Responsive Design */
@media (max-width: 992px) {
    .navbar {
        padding: 20px 30px;
    }
    
    .navbar.scrolled {
        padding: 15px 30px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .about-content {
        flex-direction: column;
        gap: 60px;
    }
    
    .cta-banner {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 20px;
    }
    
    .navbar.scrolled {
        padding: 15px 20px;
    }
    
    .nav-links {
        gap: 20px;
    }
    
    .nav-link {
        font-size: 0.8rem;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .about-image, .about-text {
        flex: 0 0 100%;
    }
    
    .footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-logo {
        justify-content: center;
    }
    
    .footer-info p {
        justify-content: center;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }
}

@media (max-width: 576px) {
    .navbar {
        flex-direction: column;
        gap: 15px;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-divider {
        margin: 15px auto 20px;
    }
    
    .contact-cards {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-card {
        width: 100%;
        max-width: 350px;
    }
}

/* Add hero background image */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.pexels.com/photos/934070/pexels-photo-934070.jpeg?auto=compress&cs=tinysrgb&w=1260&h=750&dpr=1') center/cover no-repeat;
} 