/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-burgundy: #8B2942;
    --secondary-gray: #5A6169;
    --dark-bg: #1a1a1a;
    --light-text: #f5f5f5;
    --accent-gold: #d4af37;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: var(--light-text);
    height: 100dvh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

/* Container */
.container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    position: relative;
    overflow: hidden;
}

.background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 50%, rgba(139, 41, 66, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 50%, rgba(90, 97, 105, 0.1) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* Content */
.content {
    text-align: center;
    max-width: 800px;
    position: relative;
    z-index: 1;
    animation: fadeInUp 1s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo */
.logo-container {
    margin-bottom: 1rem;
    animation: fadeIn 1.2s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.logo {
    max-width: 200px;
    width: 100%;
    height: auto;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.05);
}

/* Company Name */
.company-name {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-burgundy) 0%, var(--secondary-gray) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 2px;
    animation: fadeInUp 1.3s ease-out;
}

/* Services */
.services {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1.4s ease-out;
}

.service-item {
    font-size: 1rem;
    font-weight: 400;
    color: var(--light-text);
    letter-spacing: 1px;
    text-transform: uppercase;
    opacity: 0.9;
}

.separator {
    color: var(--primary-burgundy);
    font-size: 1.2rem;
    opacity: 0.7;
}

/* Coming Soon Section */
.coming-soon {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1.5s ease-out;
}

.coming-soon h2 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 600;
    color: var(--light-text);
    margin-bottom: 1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    position: relative;
    display: inline-block;
}

.coming-soon h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-burgundy) 0%, var(--secondary-gray) 100%);
}

.tagline {
    font-size: 1rem;
    font-weight: 300;
    color: var(--light-text);
    opacity: 0.8;
    margin-top: 1rem;
    font-style: italic;
}

/* Contact Info */
.contact-info {
    margin-bottom: 1.5rem;
    animation: fadeInUp 1.6s ease-out;
}

.contact-info p {
    font-size: 1rem;
    margin-bottom: 0.8rem;
    opacity: 0.9;
}

.email {
    font-size: 1.2rem;
    color: var(--primary-burgundy);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    margin-bottom: 0.5rem;
}

.email::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-burgundy);
    transition: width 0.3s ease;
}

.email:hover {
    color: var(--accent-gold);
}

.email:hover::after {
    width: 100%;
    background: var(--accent-gold);
}

.phone {
    font-size: 1.2rem;
    color: var(--primary-burgundy);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    display: block;
}

.phone::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-burgundy);
    transition: width 0.3s ease;
}

.phone:hover {
    color: var(--accent-gold);
}

.phone:hover::after {
    width: 100%;
    background: var(--accent-gold);
}

/* Social Links */
.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    animation: fadeInUp 1.7s ease-out;
}

.social-icon {
    color: var(--light-text);
    transition: all 0.3s ease;
    opacity: 0.7;
    padding: 0.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.social-icon:hover {
    color: var(--primary-burgundy);
    opacity: 1;
    transform: translateY(-3px);
}

.social-icon svg {
    width: 20px;
    height: 20px;
}

/* Footer */
footer {
    text-align: center;
    padding: 1rem;
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

footer p {
    font-size: 0.8rem;
    opacity: 0.7;
    letter-spacing: 0.5px;
}

.rm-link {
    color: var(--primary-burgundy);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

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

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 0.75rem;
    }

    .company-name {
        font-size: 2rem;
        margin-bottom: 0.75rem;
    }

    .coming-soon h2 {
        font-size: 2.2rem;
    }

    .services {
        flex-direction: column;
        gap: 0.3rem;
        margin-bottom: 1rem;
    }

    .separator {
        display: none;
    }

    .service-item {
        font-size: 0.85rem;
    }

    .tagline {
        font-size: 0.9rem;
    }

    .logo {
        max-width: 150px;
    }

    .social-links {
        gap: 1rem;
    }

    .social-icon {
        padding: 0.6rem;
    }

    .logo-container {
        margin-bottom: 0.5rem;
    }

    .contact-info {
        margin-bottom: 1rem;
    }

    .contact-info p {
        font-size: 0.9rem;
    }

    .email, .phone {
        font-size: 1rem;
    }

    .coming-soon {
        margin-bottom: 1rem;
    }

    footer {
        padding: 0.75rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0.5rem;
    }

    .company-name {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
        letter-spacing: 1px;
    }

    .coming-soon h2 {
        font-size: 2rem;
        letter-spacing: 2px;
        margin-bottom: 0.75rem;
    }

    .coming-soon h2::after {
        width: 80px;
        height: 2px;
    }

    .tagline {
        font-size: 0.85rem;
        margin-top: 0.75rem;
    }

    .email, .phone {
        font-size: 0.95rem;
        word-break: break-all;
    }

    .contact-info p {
        font-size: 0.85rem;
        margin-bottom: 0.6rem;
    }

    .logo {
        max-width: 120px;
    }

    .service-item {
        font-size: 0.75rem;
        letter-spacing: 0.5px;
    }

    .social-links {
        gap: 1rem;
    }

    .social-icon {
        padding: 0.7rem;
    }

    .social-icon svg {
        width: 22px;
        height: 22px;
    }

    footer {
        padding: 0.6rem 0.4rem;
    }

    footer p {
        font-size: 0.65rem;
        line-height: 1.4;
    }
}

/* Extra small devices */
@media (max-width: 360px) {
    .company-name {
        font-size: 1.4rem;
    }

    .coming-soon h2 {
        font-size: 1.6rem;
    }

    .logo {
        max-width: 100px;
    }

    .email, .phone {
        font-size: 0.85rem;
    }

    .social-icon svg {
        width: 20px;
        height: 20px;
    }

    footer p {
        font-size: 0.6rem;
    }
}

/* Landscape orientation on mobile */
@media (max-height: 600px) and (orientation: landscape) {
    .logo {
        max-width: 80px;
    }

    .logo-container {
        margin-bottom: 0.3rem;
    }

    .company-name {
        font-size: 1.4rem;
        margin-bottom: 0.4rem;
    }

    .coming-soon h2 {
        font-size: 1.6rem;
        margin-bottom: 0.5rem;
    }

    .coming-soon {
        margin-bottom: 0.75rem;
    }

    .tagline {
        font-size: 0.75rem;
        margin-top: 0.5rem;
    }

    .contact-info {
        margin-bottom: 0.75rem;
    }

    .contact-info p {
        font-size: 0.75rem;
        margin-bottom: 0.4rem;
    }

    .email, .phone {
        font-size: 0.85rem;
        margin-bottom: 0.3rem;
    }

    .services {
        margin-bottom: 0.75rem;
    }

    .service-item {
        font-size: 0.7rem;
    }

    footer {
        padding: 0.4rem;
    }

    footer p {
        font-size: 0.6rem;
    }
}
