:root {
    --primary-color: #1a1a2e;
    --secondary-color: #16213e;
    --accent-color: #0f3460;
    --text-color: #e94560;
    --light-text: #ffffff;
    --gray-text: #b2bec3;
    --bg-color: #0f0f1b;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--light-text);
    line-height: 1.6;
}

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

ul {
    list-style: none;
}

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

/* Header & Navigation */
header {
    background-color: var(--primary-color);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: var(--text-color);
}

.nav-links {
    display: flex;
}

.nav-links li {
    margin-left: 30px;
}

.nav-links a:hover {
    color: var(--text-color);
    transition: 0.3s;
}

/* Hero Section */
.hero {
    height: 500px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('../img/hero.jpg') center/cover;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.hero p {
    font-size: 20px;
    max-width: 800px;
    margin-bottom: 30px;
}

.btn {
    display: inline-block;
    background-color: var(--text-color);
    color: white;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    border: none;
    transition: 0.3s;
}

.btn:hover {
    background-color: #c0392b;
    transform: translateY(-2px);
}

/* Latest Reviews Section */
.section-title {
    text-align: center;
    margin: 60px 0 40px;
    font-size: 32px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--text-color);
    margin: 10px auto;
}

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

.review-card {
    background-color: var(--secondary-color);
    border-radius: 10px;
    overflow: hidden;
    transition: 0.3s;
}

.review-card:hover {
    transform: translateY(-10px);
}

.review-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.review-content {
    padding: 20px;
}

.review-content h3 {
    margin-bottom: 10px;
}

.review-content p {
    color: var(--gray-text);
    font-size: 14px;
    margin-bottom: 20px;
}

/* Newsletter Section */
.newsletter {
    background-color: var(--accent-color);
    padding: 60px 0;
    margin-top: 60px;
    text-align: center;
}

.newsletter h2 {
    margin-bottom: 20px;
}

.newsletter-form {
    max-width: 500px;
    margin: 0 auto;
    display: flex;
}

.newsletter-form input {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.newsletter-form button {
    border-radius: 0 5px 5px 0;
}

/* Footer */
footer {
    background-color: var(--primary-color);
    padding: 60px 0 20px;
    margin-top: 60px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    margin-bottom: 20px;
    color: var(--text-color);
}

.footer-section p, .footer-section li {
    color: var(--gray-text);
    margin-bottom: 10px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid var(--accent-color);
    color: var(--gray-text);
    font-size: 14px;
}

/* Contact Page Styles */
.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 40px;
}

.contact-form input, .contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    background-color: var(--secondary-color);
    border: 1px solid var(--accent-color);
    color: white;
    border-radius: 5px;
}

.contact-info div {
    margin-bottom: 30px;
}

.contact-info i {
    color: var(--text-color);
    margin-right: 15px;
}

/* Content Pages (Policy, etc.) */
.content-page {
    padding: 60px 0;
}

.content-page h1 {
    margin-bottom: 30px;
    color: var(--text-color);
}

.content-page h2 {
    margin: 30px 0 15px;
}

.content-page p {
    margin-bottom: 15px;
    color: var(--gray-text);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 32px;
    }
}
