/* Custom styles for TeakDivine Coming Soon Page */

body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
}

.top-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1100;
    background-color: rgba(0, 0, 0, 0.7);
    padding: 0.75rem 0;
}

.top-header .logo img {
    max-height: 50px;
    width: auto;
}

.top-header .contact-info {
    font-size: 0.95rem;
}

.top-header .contact-item {
    line-height: 1.3;
}

.top-header a {
    color: #fff;
    text-decoration: none;
}

.top-header a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .top-header .container {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.5rem;
    }

    .top-header .contact-info {
        text-align: center;
    }

    .top-header .contact-item {
        display: block;
    }
}

.carousel-item img {
    height: 100vh;
    object-fit: cover;
}

.carousel-caption {
    bottom: 50%;
    transform: translateY(50%);
    text-align: center;
}

.carousel-caption h1 {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    text-shadow: 2px 2px 0px rgba(0,0,0,1);
    margin-bottom: 1rem;
}

.carousel-caption p {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 0px rgba(0,0,0,1);
    margin-bottom: 2rem;
}

.btn-primary {
    background-color: rgba(0,0,0,.7);
    border-color: #000;
    padding: 0.75rem 1.5rem;
    font-size: 1.1rem;
}

.btn-primary:hover {
    background-color: rgba(0,0,0,.9);
    border-color: #000;
}

.contact {
    background-color: #f8f9fa;
    padding: 4rem 0;
}

.contact h2 {
    color: #333;
    font-weight: bold;
}

.contact p {
    color: #666;
}

footer {
    background-color: rgba(0, 0, 0, 0.5);
    color: #fff;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
}

footer a {
    color: #fff;
    text-decoration: none;
}

footer a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-caption h1 {
        font-size: 2rem;
    }
    .carousel-caption p {
        font-size: 1.2rem;
    }
}