/* style.css - The YOU Book Co. - Brand Colors */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #fef7e0;
    color: #2c3e2f;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
header {
    background: linear-gradient(135deg, #f9d56e, #f8c471);
    padding: 20px 0;
    text-align: center;
    border-bottom: 5px solid #e67e22;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.logo-img {
    max-height: 100px;
    margin: 10px auto;
    display: block;
}

.logo-wrapper {
    text-align: center;
}

.tagline {
    font-size: 1.2rem;
    font-weight: bold;
    color: #2c3e2f;
    margin-top: 10px;
}

/* Navigation */
nav {
    background-color: #2c3e2f;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    flex-wrap: wrap;
}

nav ul li {
    margin: 0 15px;
}

nav ul li a {
    color: #f9d56e;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1rem;
    transition: 0.3s;
    padding: 8px 15px;
    border-radius: 25px;
}

nav ul li a:hover {
    background-color: #e67e22;
    color: white;
}

/* Hero Section */
.hero {
    text-align: center;
    padding: 50px 20px;
    background: linear-gradient(135deg, #fef7e0, #f9d56e);
    border-radius: 25px;
    margin: 30px 0;
    border: 2px solid #e67e22;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: #e67e22;
}

.hero p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 20px;
}

/* Buttons */
.btn {
    display: inline-block;
    background-color: #e67e22;
    color: white;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1rem;
    transition: 0.3s;
    margin: 8px;
    border: none;
    cursor: pointer;
}

.btn:hover {
    background-color: #2c3e2f;
    transform: scale(1.03);
}

.btn-secondary {
    background-color: #2c3e2f;
}

.btn-secondary:hover {
    background-color: #e67e22;
}

.btn-whatsapp {
    background-color: #25D366;
}

.btn-whatsapp:hover {
    background-color: #1da851;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid #e67e22;
    color: #e67e22;
}

.btn-outline:hover {
    background-color: #e67e22;
    color: white;
}

/* Cards */
.packages {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin: 40px 0;
}

.card {
    background: white;
    border-radius: 20px;
    padding: 20px;
    width: 280px;
    box-shadow: 0 6px 12px rgba(0,0,0,0.1);
    transition: 0.3s;
    text-align: center;
    border-top: 8px solid #f9d56e;
}

.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 20px rgba(0,0,0,0.15);
}

.card h3 {
    color: #e67e22;
    margin-bottom: 10px;
    font-size: 1.5rem;
}

.price {
    font-size: 1.8rem;
    font-weight: bold;
    color: #2c3e2f;
    margin: 10px 0;
}

.price small {
    font-size: 0.8rem;
}

.card ul {
    text-align: left;
    margin: 15px 0;
    padding-left: 20px;
}

.card li {
    margin: 8px 0;
}

/* Content Boxes */
.content-box {
    background: white;
    padding: 30px;
    border-radius: 20px;
    margin: 30px 0;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    border-left: 8px solid #e67e22;
}

h2 {
    color: #e67e22;
    margin-bottom: 20px;
    border-left: 8px solid #e67e22;
    padding-left: 15px;
}

h3 {
    color: #2c3e2f;
    margin: 20px 0 10px;
}

/* Info Box */
.info-box {
    background: #f9d56e;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    text-align: center;
}

/* Footer */
footer {
    background-color: #2c3e2f;
    color: #f9d56e;
    text-align: center;
    padding: 30px 20px;
    margin-top: 50px;
}

.footer-content {
    max-width: 1000px;
    margin: 0 auto;
}

.footer-tagline {
    font-size: 1.1rem;
    font-style: italic;
    margin-bottom: 25px;
}

.footer-section {
    margin: 20px 0;
    text-align: left;
    background: rgba(255,255,255,0.1);
    padding: 15px;
    border-radius: 10px;
}

.footer-section h4 {
    color: #f9d56e;
    margin-bottom: 10px;
}

.footer-section ol {
    margin-left: 20px;
}

.footer-section li {
    margin: 5px 0;
}

.footer-social {
    margin: 25px 0;
    padding: 15px;
    border-top: 1px solid #f9d56e;
    border-bottom: 1px solid #f9d56e;
}

.footer-social a {
    color: #f9d56e;
}

.footer-copyright {
    margin-top: 25px;
    font-size: 0.8rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero h2 { font-size: 1.8rem; }
    .btn { padding: 10px 18px; font-size: 0.9rem; }
    nav ul li { margin: 0 8px; }
    .card { width: 90%; }
    .logo-img { max-height: 70px; }
    .footer-section { text-align: center; }
    .footer-section ol { text-align: left; }
}