/* styles.css */

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

body {
    font-family: 'Roboto', sans-serif;
    background: linear-gradient(to bottom, #7FFFD4, #0F52BA); /* Aquamarine to sapphire blue */
    color: #f0f0f0; /* Cream text for readability */
    margin: 0;
    padding: 0;
}

/* Headers */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    color: #c8b273; /* Gold */
    text-shadow: 0 0 10px rgba(127, 255, 212, 0.5), /* Aquamarine glow */
                 0 0 20px rgba(127, 255, 212, 0.3);
}

/* Logo Space */
.logo-space {
    height: 250px; /* Total space from top of page to top of carousel */
    position: relative;
}

/* Logo Image */
.logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    max-width: 100%; /* Prevents overflow on smaller screens */
    height: auto;
}

/* Navigation Bar */
nav {
    background: linear-gradient(to bottom, #8FFFE0, #1A6BBF); /* Lighter aquamarine to mid-tone blue */
    padding: 10px 0;
    box-shadow: 0 0 15px rgba(127, 255, 212, 0.5); /* Aquamarine glow */
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 20px;
    padding: 0;
}

nav a {
    color: #c8b273; /* Gold */
    text-decoration: none;
    font-size: 1.1em;
    transition: color 0.3s ease, text-shadow 0.3s ease;
}

nav a:hover {
    color: #d4c68a; /* Lighter gold */
    text-shadow: 0 0 5px #c8b273; /* Subtle glow */
}

/* Hero Section */
.hero {
    position: relative;
    text-align: center;
    padding: 0 20px 50px 20px; /* No top padding, side and bottom padding */
    box-shadow: 0 0 20px rgba(127, 255, 212, 0.5); /* Aquamarine glow */
}

.carousel {
    position: relative;
    overflow: hidden;
}

.slides {
    display: flex;
    transition: transform 0.5s ease;
}

.slide {
    min-width: 100%;
    height: 400px;
    background-size: cover;
    background-position: center;
}

.prev, .next {
    color: #c8b273; /* Gold */
    background-color: rgba(0, 0, 0, 0.5);
    border: none;
    padding: 10px;
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.5em;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.indicators {
    display: flex;
    justify-content: center;
    margin-top: 10px;
}

.indicator {
    width: 10px;
    height: 10px;
    background-color: #f0f0f0;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
}

.indicator.active {
    background-color: #c8b273; /* Gold */
}

/* Hero Text */
.hero-text {
    color: #c8b273; /* Gold color matching the rest of the page */
    text-shadow: 0 0 10px rgba(127, 255, 212, 0.5), 0 0 20px rgba(127, 255, 212, 0.3); /* Aquamarine glow */
    font-size: 1.2em;
    margin-bottom: 20px;
}

/* Buttons */
.button-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px; /* Even spacing between buttons */
    margin: 20px 0; /* Space above and below the container */
}

.cta-button, .buy-button, .inquire-button, .newsletter button {
    background-color: rgba(173, 216, 230, 0.5); /* Light blue with 50% opacity for glass effect */
    color: #FFFFFF; /* White text for contrast */
    padding: 12px 24px;
    border: 1px solid #c8b273; /* Gold border */
    border-radius: 5px;
    text-decoration: none;
    font-size: 1.2em;
    transition: background-color 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease;
    box-shadow: 0 0 10px rgba(127, 255, 212, 0.5); /* Aquamarine glow */
    display: inline-block; /* For <a> tags */
}

.cta-button:hover, .buy-button:hover, .inquire-button:hover, .newsletter button:hover {
    background-color: rgba(135, 206, 235, 0.5); /* Slightly darker light blue on hover */
    box-shadow: 0 0 15px rgba(127, 255, 212, 0.8);
    transform: scale(1.05);
}

/* Audio Player */
.audio-player {
    margin-top: 20px;
    display: block;
    width: 100%;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(127, 255, 212, 0.5);
}

/* Gem Sections */
.gem-section {
    border: 2px solid #c8b273; /* Gold */
    border-radius: 10px;
    padding: 20px;
    margin-bottom: 40px;
    background: linear-gradient(to bottom, #7FFFD4, #0F52BA); /* Matching gradient */
    box-shadow: 0 0 15px rgba(127, 255, 212, 0.3); /* Aquamarine glow */
    display: flex;
    align-items: center;
    gap: 20px;
}

.gem-image {
    max-width: 300px;
    cursor: pointer;
}

.gem-description {
    flex: 1;
}

/* Testimonials Section */
.testimonials {
    background: linear-gradient(to bottom, #7FFFD4, #0F52BA);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 0 15px rgba(127, 255, 212, 0.3);
}

.testimonial {
    border: 1px solid #c8b273;
    padding: 15px;
    margin: 10px 0;
    border-radius: 5px;
}

.testimonial p {
    font-style: italic;
}

.testimonial cite {
    display: block;
    margin-top: 10px;
    font-weight: bold;
}

/* Newsletter Section */
.newsletter {
    background: linear-gradient(to bottom, #7FFFD4, #0F52BA);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 40px;
    box-shadow: 0 0 15px rgba(127, 255, 212, 0.3);
    text-align: center;
}

.newsletter form {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.newsletter input[type="email"] {
    padding: 10px;
    border: 1px solid #c8b273;
    border-radius: 5px;
    width: 80%;
    max-width: 400px;
}

/* Footer */
footer {
    background: linear-gradient(to bottom, #8FFFE0, #1A6BBF); /* Matching gradient */
    color: #c8b273; /* Gold text */
    padding: 20px;
    text-align: center;
    box-shadow: 0 0 15px rgba(127, 255, 212, 0.5); /* Aquamarine glow */
}

footer a {
    color: #c8b273; /* Gold */
    text-decoration: none;
}

footer a:hover {
    color: #d4c68a; /* Lighter gold */
}

/* Responsiveness */
@media (max-width: 768px) {
    .logo-space {
        height: 120px; /* Smaller space for mobile */
    }

    .logo {
        width: 100vw; /* Full viewport width for mobile */
        max-width: none; /* Override max-width for full stretch */
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .hero-content p {
        font-size: 1.2em;
    }

    .button-container {
        flex-direction: column;
        gap: 10px;
    }

    nav ul {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .gem-section {
        flex-direction: column;
        text-align: center;
    }

    .gem-image {
        width: 100%;
        max-width: 300px;
    }

    .testimonials, .newsletter {
        padding: 15px;
    }

    .newsletter form {
        width: 100%;
    }

    .newsletter input[type="email"] {
        width: 90%;
    }
}
