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

body {
    font-family: 'Exo', sans-serif;
    background-color: rgba(17, 17, 17, 1);
    color: #fff;
    font-size: 20px;
    line-height: 150%;
    overflow-x: hidden;
}

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

/* Cookie Notice */
.cookie-notice {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #2a2a2a;
    padding: 20px;
    z-index: 1001;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.cookie-notice.show {
    transform: translateY(0);
}

.cookie-content h3 {
    color: rgba(252, 246, 29, 1);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.cookie-content p {
    margin-bottom: 20px;
    max-width: 800px;
    color: #ddd;
}

.cookie-content a {
    color: rgba(252, 246, 29, 1);
    text-decoration: underline;
}

.cookie-buttons {
    display: flex;
    gap: 15px;
}

.accept-cookies {
    background-color: rgba(252, 246, 29, 1);
    color: #000;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Exo', sans-serif;
    font-size: 16px;
}

.decline-cookies {
    background-color: transparent;
    color: #fff;
    border: 2px solid #555;
    padding: 10px 28px;
    border-radius: 25px;
    cursor: pointer;
    font-family: 'Exo', sans-serif;
    font-size: 16px;
}

.accept-cookies:hover {
    background-color: #e6da1a;
}

.decline-cookies:hover {
    border-color: #777;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: rgba(26, 26, 26, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 0;
}

.navbar {
    padding: 15px 0;
}

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

.logo {
    font-size: 24px;
    font-weight: 700;
    color: rgba(252, 246, 29, 1);
    letter-spacing: 2px; 
    text-decoration: unset;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 40px;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    font-size: 16px;
}

.nav-menu a:hover {
    color: rgba(252, 246, 29, 1);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section */
.hero {
  margin-top: 60px;
    background: url('./images/hero.png') no-repeat center;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    padding-top: 96px;
    padding-bottom: 96px;
}

.hero h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    text-align: center;
}

.hero p {
    font-size: 18px;
    margin-bottom: 30px;
    text-align: center;
}

/* Tips Section */
.tips-section {
    padding: 80px 0;
    background-color: #2a2a2a;
}


.tip-card p {
  margin-bottom: 0;
}

.tips-grid {
    display: flex;
   flex-wrap: wrap;
    gap: 24px;
    justify-content: space-between;
    margin-top: 40px;
}

.tip-card {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(27, 27, 27, 0.7);
    padding: 24px;
    border-radius: 32px;
    transition: transform 0.3s ease;
}

@media (min-width:768px){
    .tip-card--50 {
      max-width: calc(50% - 24px);
    }

    .tip-card--33 {
      max-width: calc(33% - 24px);
    }
}

.tip-card:hover {
    transform: translateY(-5px) !important;
}

.tip-card h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.tip-card p {
    line-height: 1.6;
    text-align: left;
}

/* Seasons Section */
.seasons-section {
    padding: 80px 0;
}

.seasons-section h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.seasons-section > .container > p {
    text-align: center;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
}

.seasons-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.season-card {
    background: rgba(27, 27, 27, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 32px;
    padding: 24px;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.season-card:hover {
    transform: translateY(-5px);
}

.season-card img {
    width: 100%;
    height: 498px;
    border-radius: 20px;
    object-fit: cover;
}


.season-content h3 {
    font-size: 20px;
    margin-bottom: 15px;
    font-weight: 600;
}

.season-content p {
    line-height: 1.6;
}

/* Problems Section */
.problems-section {
    padding: 80px 0;
}

.problems-section h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.problems-section > .container > p {
    text-align: center;
    color: #ddd;
    margin: 0 auto 50px;
    font-size: 16px;
}

.problems-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 24px;
}

.problems-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

.problems-grid {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.problems-img {
  align-self: stretch;
}

.problem-card {
  height: max-content;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.problem-card:hover {
    transform: translateY(-5px) !important;
}

.problem-card h3 {
    font-size: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.problem-card p {
    color: #ddd;
    line-height: 1.6;
    font-size: 14px;
}

/* Blog Section */
.blog-section {
    padding: 80px 0;
}

.blog-section h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.blog-section > .container > p {
    text-align: center;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
}

.blog-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 50px;
}

.blog-card {
    background: rgba(27, 27, 27, 1);
    padding: 24px;
    border-radius: 32px;
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.blog-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.blog-card p {
    line-height: 1.6;
}

.cta-button {
    display: flex;
    width: max-content;
    text-decoration: unset;
    margin: 0 auto;
    background-color: rgba(252, 246, 29, 1);
    color: #000;
    border: none;
    padding: 14px 24px;
    border-radius: 32px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Exo', sans-serif;
    font-size: 24px;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #e6da1a;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0;
}

.testimonials-section h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.testimonials-section > .container > p {
    text-align: center;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.testimonial-card {
    background: rgba(27, 27, 27, 1);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 24px;
    border-radius: 32px;
}

.stars {
    color: rgba(252, 246, 29, 1);
    font-size: 18px;
    margin-bottom: 6px;
}

.testimonial-card h4 {
    font-size: 24px;
    margin-bottom: 6px;
    font-weight: 600;
}

.testimonial-card p {
    color: #ddd;
    line-height: 1.6;
    font-style: italic;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
}

.contact-section h2 {
    text-align: center;
    font-size: 36px;
    color: #fff;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-section > .container > p {
    text-align: center;
    color: #ddd;
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 16px;
}

.contact-form {
    max-width: 736px;
    margin: 0 auto;
    border: 1px solid rgba(255, 255, 255, 0.5);
    background: rgba(27, 27, 27, 1);
    border-radius: 32px;
    padding: 24px;
}

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

.form-group label {
    display: block;
    color: rgba(252, 246, 29, 1);
    margin-bottom: 8px;
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    background-color: rgba(17, 17, 17, 1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: #fff;
    font-family: 'Exo', sans-serif;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: rgba(252, 246, 29, 1);
}

textarea {
  resize: none;
}

.submit-button {
    width: 100%;
    background-color: rgba(252, 246, 29, 1);
    color: #000;
    border: none;
    padding: 15px;
    border-radius: 32px;
    font-weight: 600;
    cursor: pointer;
    font-family: 'Exo', sans-serif;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #e6da1a;
}

/* Footer */
.footer {
    background-color: #111;
    padding: 40px 0 20px;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.footer-brand .logo {
    font-size: 24px;
    font-weight: 700;
    color: rgba(252, 246, 29, 1);
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 30px;
}

.footer-links a {
    color: #ddd;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: rgba(252, 246, 29, 1);
}

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

.social-link img {
    width: 24px;
    height: 24px;
    filter: brightness(0.7);
    transition: filter 0.3s ease;
}

.social-link:hover img {
    filter: brightness(1);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid #333;
    color: #888;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .footer-bottom {
      flex-direction: column;
    }

    .problems-content {
      grid-template-columns: 1fr;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 60px;
        flex-direction: column;
        background-color: rgba(26, 26, 26, 0.95);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.05);
        padding: 20px 0;
        gap: 20px;
    }
    
    .nav-menu.active {
        left: 0;
    }
    
    .hero h1 {
        font-size: 36px;
    }
    
    .hero p {
        font-size: 16px;
    }
    
    .tips-grid,
    .seasons-grid,
    .problems-grid,
    .blog-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .footer-links {
        flex-direction: column;
        gap: 15px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-content h3 {
        font-size: 20px;
    }
    
    .sections h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        padding: 120px 0 60px;
        height: auto;
        min-height: 70vh;
    }
    
    .hero h1 {
        font-size: 28px;
    }
    
    .tip-card,
    .problem-content,
    .blog-card,
    .testimonial-card {
        padding: 20px;
    }
    
    .seasons-section,
    .problems-section,
    .blog-section,
    .testimonials-section,
    .contact-section,
    .tips-section {
        padding: 60px 0;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

.policy {
  margin-top: 60px;
  padding-top: 60px;
  padding-bottom: 80px;
}

.policy h1 {
  font-weight: 700;
  font-size: 48px;
  line-height: 100%;
  margin-bottom: 12px;
}

.policy-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.policy-content li {
  list-style-position: inside;
}

.tip-card.info {
  background: rgba(41, 40, 18, 1);
}

.tip-card.info h3 {
  color: rgba(252, 246, 29, 1);
}

.blog {
  margin-top: 60px;
  padding-top: 96px;
  padding-bottom: 96px;
}

.blog h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #fff;
    line-height: 1.2;
}

.blog p {
    font-size: 18px;
    margin-bottom: 30px;
}