/* aussie-home.css */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; background: #f8f9fa; color: #1a1a1a; line-height: 1.6; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Header */
.aussie-header {
  background: white;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
}
.aussie-nav-wrapper { display: flex; justify-content: space-between; align-items: center; padding: 1rem 0; }
.aussie-logo { font-weight: 800; font-size: 1.5rem; color: #00b894; text-decoration: none; }
.aussie-nav ul { display: flex; gap: 2rem; list-style: none; }
.aussie-nav a { color: #2d3436; text-decoration: none; font-weight: 500; }
.aussie-nav a:hover { color: #00b894; }
.has-submenu { position: relative; }
.submenu {
  position: absolute; top: 100%; left: 0; background: white; min-width: 200px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1); border-radius: 8px; opacity: 0; visibility: hidden;
  transition: all 0.3s; padding: 0.5rem 0;
}
.has-submenu:hover .submenu { opacity: 1; visibility: visible; }
.aussie-mobile-toggle { display: none; cursor: pointer; }

/* Hero */
.aussie-hero { padding: 4rem 0; text-align: center; background: linear-gradient(135deg, #74b9ff, #0984e3); color: white; }
.aussie-hero h1 { font-size: 2.8rem; margin-bottom: 1rem; }
.aussie-hero .subtitle { font-size: 1.3rem; margin: 1rem 0; font-weight: 600; }
.aussie-hero p { max-width: 800px; margin: 0.8rem auto; opacity: 0.95; }

/* Promo Grid */
.aussie-promo-section { padding: 3rem 0; background: #fff; }
.aussie-promo-section h2 { text-align: center; margin-bottom: 2rem; font-size: 2rem; color: #2d3436; }
.aussie-promo-grid { display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.aussie-promo-card {
  background: #fff; border: 1px solid #eee; border-radius: 12px; padding: 1.5rem;
  display: flex; flex-direction: column; align-items: center; text-align: center;
  transition: transform 0.3s, box-shadow 0.3s; position: relative;
}
.aussie-promo-card:hover { transform: translateY(-5px); box-shadow: 0 10px 25px rgba(0,0,0,0.1); }
.aussie-promo-card.featured {
  border: 2px solid #f1c40f; background: #fffdf0;
}
.aussie-logo img { height: 60px; margin-bottom: 1rem; }
.aussie-offer p { font-weight: 700; color: #2d3436; margin: 0.5rem 0; font-size: 1.1rem; }
.aussie-rating { display: flex; align-items: center; gap: 0.5rem; margin: 0.5rem 0; }
.aussie-rating .score { font-weight: bold; color: #e67e22; font-size: 1.1rem; }
.aussie-rating img { height: 18px; }
.aussie-cta-btn {
  margin-top: auto; background: #00b894; color: white; padding: 0.8rem 1.8rem;
  border-radius: 50px; text-decoration: none; font-weight: 600; font-size: 1rem;
  transition: background 0.3s;
}
.aussie-cta-btn:hover { background: #00a085; }

/* Content */
.aussie-content { padding: 3rem 0; }
.aussie-content h2 { font-size: 1.8rem; margin: 2rem 0 1rem; color: #2d3436; }
.aussie-content table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; }
.aussie-content th, .aussie-content td { border: 1px solid #ddd; padding: 1rem; text-align: left; }
.aussie-content th { background: #f1f1f1; font-weight: 600; }

/* Footer */
.aussie-footer { background: #2d3436; color: #ddd; text-align: center; padding: 2rem 0; font-size: 0.9rem; }

/* Mobile */
@media (max-width: 768px) {
  .aussie-nav ul { display: none; }
  .aussie-mobile-toggle { display: block; }
  .aussie-hero h1 { font-size: 2rem; }
  .aussie-promo-grid { grid-template-columns: 1fr; }
}