/* General Styles */
:root {
    --primary-color: #B93C5D; /* Main app color from home.tsx */
    --secondary-color: #333333; /* Dark text color */
    --accent-color: #757575; /* Secondary text color from home.tsx */
    --light-color: #FFFFFF; /* Pure white background */
    --dark-color: #000000; /* Black text */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    color: var(--dark-color);
    background-color: var(--light-color);
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Header Styles */
header {
    padding: 20px 0;
    background-color: var(--light-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Make the logo even bigger */
.logo img {
    height: 80px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

nav a {
    font-weight: 500;
    font-size: 14px;
    letter-spacing: 1px;
    transition: color 0.3s;
}

nav a:hover {
    color: var(--primary-color);
}

/* Hero Section */
.hero {
    padding: 80px 0;
    background-color: var(--light-color);
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 50px;
}

.hero-content {
    flex: 1;
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

.hero-image img {
    max-height: 600px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--secondary-color);
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    color: var(--dark-color);
    opacity: 0.9;
}

.download-text {
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-align: center;
}

.app-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
}

/* Center the download button */
.app-buttons.centered {
    justify-content: center;
}

.app-store-button img {
    height: 50px;
    transition: transform 0.3s;
}

.app-store-button:hover img {
    transform: scale(1.05);
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: white;
}

.features h2 {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 60px;
    color: var(--secondary-color);
}

.feature {
    margin-bottom: 80px;
}

.feature h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.feature h3 span {
    font-weight: 400;
    font-style: italic;
    color: var(--primary-color);
}

.feature p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 800px;
}

.feature-image {
    display: flex;
    justify-content: center;
}

.feature-image img {
    max-height: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

/* Download Section */
.download {
    padding: 80px 0;
    background-color: var(--primary-color);
    color: white;
    text-align: center;
}

.download h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
}

/* Center the download button in the download section */
.download .app-buttons {
    justify-content: center;
    margin: 0 auto;
}

/* Footer */
footer {
    padding: 40px 0;
    background-color: white;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

footer .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-links {
    display: flex;
    gap: 15px;
}

.footer-links a {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--secondary-color);
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-icon img {
    width: 24px;
    height: 24px;
    transition: transform 0.3s;
}

.social-icon:hover img {
    transform: scale(1.2);
}

/* Removed cocktail-themed decorative elements */

/* Responsive Design */
@media (max-width: 992px) {
    .hero .container {
        flex-direction: column;
    }
    
    h1 {
        font-size: 2.5rem;
    }
    
    .hero-image img {
        max-height: 500px;
    }
}

@media (max-width: 768px) {
    nav ul {
        gap: 15px;
    }
    
    h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .feature h3 {
        font-size: 1.5rem;
    }
}

@media (max-width: 576px) {
    header .container {
        flex-direction: column;
        gap: 15px;
    }
    
    nav ul {
        gap: 10px;
    }
    
    .hero {
        padding: 40px 0;
    }
    
    h1 {
        font-size: 1.8rem;
    }
    
    .download h2 {
        font-size: 1.8rem;
    }
}

/* Privacy Policy Page */
.privacy-policy {
    padding: 60px 0;
}

.privacy-policy .container {
    max-width: 1000px;
}

.privacy-policy h1, 
.privacy-policy h2, 
.privacy-policy h3 {
    margin-top: 30px;
    margin-bottom: 15px;
}

.privacy-policy p, 
.privacy-policy ul, 
.privacy-policy ol {
    margin-bottom: 15px;
}

.privacy-policy ul {
    padding-left: 20px;
}

/* Add this to your styles.css file */
.organization {
    margin-top: 20px;
    text-align: center;
}

.organization p {
    font-size: 14px;
    color: #757575;
}

/* Support page styles */
.support {
    padding: 100px 0;
    text-align: center;
}

.support h1 {
    margin-bottom: 30px;
    color: var(--primary-color);
}

.support p {
    font-size: 18px;
    margin-bottom: 20px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.support-email {
    display: inline-block;
    font-size: 24px;
    color: var(--primary-color);
    font-weight: 600;
    margin: 20px 0;
    text-decoration: none;
}

.support-email:hover {
    text-decoration: underline;
} 