/* Main Styles for Diva Dash Website */

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #fff;
    color: #333;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: #333;
}

/* Header Styles */
header {
    background-color: #000;
    color: #fff;
    padding: 20px;
    position: relative;
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
}

.logo span {
    color: #D4AF37; /* Gold color */
}

/* Hamburger Menu */
.hamburger-menu {
    display: block;
    cursor: pointer;
    z-index: 1000;
}

.hamburger-icon {
    width: 30px;
    height: 20px;
    position: relative;
    margin: 0px;
    transform: rotate(0deg);
    transition: .5s ease-in-out;
    cursor: pointer;
}

.hamburger-icon span {
    display: block;
    position: absolute;
    height: 3px;
    width: 100%;
    background: #D4AF37; /* Gold color */
    border-radius: 9px;
    opacity: 1;
    left: 0;
    transform: rotate(0deg);
    transition: .25s ease-in-out;
}

.hamburger-icon span:nth-child(1) {
    top: 0px;
}

.hamburger-icon span:nth-child(2) {
    top: 8px;
}

.hamburger-icon span:nth-child(3) {
    top: 16px;
}

.hamburger-icon.open span:nth-child(1) {
    top: 8px;
    transform: rotate(135deg);
}

.hamburger-icon.open span:nth-child(2) {
    opacity: 0;
    left: -60px;
}

.hamburger-icon.open span:nth-child(3) {
    top: 8px;
    transform: rotate(-135deg);
}

/* Navigation Menu */
.nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100%;
    background-color: #000;
    padding-top: 80px;
    transition: 0.3s;
    z-index: 999;
    overflow-y: auto;
}

.nav-menu.open {
    right: 0;
}

.nav-menu ul {
    list-style: none;
}

.nav-menu ul li {
    padding: 15px 30px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1); /* Gold color with opacity */
}

.nav-menu ul li a {
    color: #fff;
    font-size: 18px;
    transition: 0.3s;
}

.nav-menu ul li a:hover {
    color: #D4AF37; /* Gold color */
}

/* Main Content Styles */
.main-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.section-title {
    font-size: 32px;
    margin-bottom: 30px;
    text-align: center;
    color: #333;
}

.section-subtitle {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Hero Section */
.hero {
    background-color: #000;
    color: #fff;
    padding: 60px 20px;
    text-align: center;
}

.hero-content {
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 30px;
    color: #D4AF37; /* Gold color */
}

.hero-text {
    font-size: 18px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: #D4AF37; /* Gold color */
    color: #000;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: 0.3s;
}

.btn:hover {
    background-color: #C5A028; /* Darker gold */
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid #D4AF37; /* Gold color */
    color: #D4AF37; /* Gold color */
}

.btn-secondary:hover {
    background-color: #D4AF37; /* Gold color */
    color: #000;
}

/* Features Section */
.features {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

.features-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-box {
    flex: 0 0 calc(33.33% - 30px);
    margin-bottom: 40px;
    padding: 30px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 0.3s;
}

.feature-box:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    color: #D4AF37; /* Gold color */
}

.feature-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.feature-text {
    font-size: 16px;
    color: #666;
}

/* About Section */
.about {
    padding: 60px 20px;
}

.about-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.about-content {
    flex: 0 0 50%;
    padding-right: 40px;
}

.about-image {
    flex: 0 0 50%;
    text-align: center;
}

.about-image img {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Blog Section */
.blog {
    padding: 60px 20px;
    background-color: #f9f9f9;
}

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

.blog-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.blog-card {
    flex: 0 0 calc(33.33% - 20px);
    margin-bottom: 40px;
    background-color: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: 0.3s;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.blog-image {
    height: 200px;
    overflow: hidden;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.3s;
}

.blog-card:hover .blog-image img {
    transform: scale(1.1);
}

.blog-content {
    padding: 20px;
}

.blog-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

.blog-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 10px;
}

.blog-excerpt {
    font-size: 16px;
    color: #666;
    margin-bottom: 15px;
}

/* Contact Section */
.contact {
    padding: 60px 20px;
}

.contact-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
    color: #333;
}

.form-control {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 16px;
}

.form-control:focus {
    border-color: #D4AF37; /* Gold color */
    outline: none;
}

textarea.form-control {
    height: 150px;
    resize: vertical;
}

/* Footer Styles */
footer {
    background-color: #000;
    color: #fff;
    padding: 60px 20px 30px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-column {
    flex: 0 0 calc(25% - 30px);
    margin-bottom: 30px;
}

.footer-title {
    font-size: 20px;
    margin-bottom: 20px;
    color: #D4AF37; /* Gold color */
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #fff;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #D4AF37; /* Gold color */
}

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

.footer-bottom p {
    font-size: 14px;
    color: #888;
}

/* Responsive Styles */
@media screen and (max-width: 992px) {
    .feature-box {
        flex: 0 0 calc(50% - 20px);
    }
    
    .blog-card {
        flex: 0 0 calc(50% - 15px);
    }
    
    .footer-column {
        flex: 0 0 calc(50% - 20px);
    }
}

@media screen and (max-width: 768px) {
    .about-content, .about-image {
        flex: 0 0 100%;
        padding-right: 0;
    }
    
    .about-image {
        margin-top: 30px;
    }
    
    .feature-box {
        flex: 0 0 100%;
    }
    
    .blog-card {
        flex: 0 0 100%;
    }
}

@media screen and (max-width: 576px) {
    .footer-column {
        flex: 0 0 100%;
    }
    
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
}

/* Careers Page Styles */
.careers-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.job-listing {
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 30px;
    margin-bottom: 30px;
}

.job-title {
    font-size: 24px;
    margin-bottom: 15px;
    color: #333;
}

.job-meta {
    display: flex;
    margin-bottom: 20px;
}

.job-meta-item {
    margin-right: 20px;
    font-size: 14px;
    color: #888;
}

.job-description {
    margin-bottom: 20px;
}

.job-requirements {
    margin-bottom: 20px;
}

.job-requirements h4 {
    margin-bottom: 10px;
    color: #333;
}

.job-requirements ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

/* Privacy and Terms Pages */
.legal-content {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #333;
}

.legal-content p {
    margin-bottom: 20px;
}

.legal-content ul {
    padding-left: 20px;
    margin-bottom: 20px;
}

/* Beta Test Page */
.beta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.beta-info {
    margin-bottom: 40px;
}

.beta-steps {
    margin-bottom: 40px;
}

.beta-step {
    display: flex;
    margin-bottom: 30px;
}

.beta-step-number {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    background-color: #D4AF37; /* Gold color */
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
}

.beta-step-content {
    flex: 1;
}

.beta-step-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #333;
}

/* Blog Article Page */
.article-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 40px 20px;
}

.article-header {
    margin-bottom: 30px;
}

.article-title {
    font-size: 36px;
    margin-bottom: 15px;
    color: #333;
}

.article-meta {
    font-size: 14px;
    color: #888;
    margin-bottom: 20px;
}

.article-image {
    margin-bottom: 30px;
}

.article-image img {
    width: 100%;
    border-radius: 8px;
}

.article-content {
    font-size: 18px;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 20px;
}

.article-content h2 {
    font-size: 28px;
    margin-top: 40px;
    margin-bottom: 20px;
    color: #333;
}

.article-content h3 {
    font-size: 24px;
    margin-top: 30px;
    margin-bottom: 15px;
    color: #333;
}

.article-content ul, .article-content ol {
    padding-left: 20px;
    margin-bottom: 20px;
}

.article-tags {
    margin-top: 40px;
}

.tag {
    display: inline-block;
    padding: 6px 12px;
    background-color: #f0f0f0;
    color: #666;
    border-radius: 4px;
    margin-right: 10px;
    margin-bottom: 10px;
    font-size: 14px;
}

.related-articles {
    margin-top: 60px;
}

.related-articles h3 {
    font-size: 24px;
    margin-bottom: 20px;
    color: #333;
}

/* Overlay */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
    z-index: 998;
}

.overlay.open {
    opacity: 1;
    visibility: visible;
}
