/* GLOBAL */
:root {
    --green: #b88a56;
    --blue: #15ade996;
    --red: #ebafaf;
    --bg: #4edf312d; /* Light Gray Background */
    --text: #86a0da; /* Dark Gray Text */
    --card-bg: #e7e76e; /* Light Gray Card */
    --section-bg: #a6d0e0; /* Medium Gray Section */
}
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: #111;
  background: #fff;
}

.container {
  max-width: 1120px;
  margin: 36px auto;
  padding: 0 22px;
}
.hero {
  padding:72px 0;
  text-align:center;
  background: linear-gradient(180deg, rgba(2,8,12,0.0), rgba(0,0,0,0.02));
  border-radius:16px;   
    color: #fff;  
}
.hero h1{font-size:2.6rem;color:var(--green);margin-bottom:10px}
.hero p{max-width:720px;margin:0 auto;color:var(--muted);font-size:1.05rem}

.btn {
  border-radius:10px;
  padding:10px 18px;
  font-weight:600;
  cursor:pointer;
}
.btn-ghost{background:transparent;border:2px solid rgba(255,255,255,0.03);color:var(--text)}
.btn-primary{background:var(--green);color:#000;border:none}
.grid {
  display:grid;
  grid-template-columns: repeat(auto-fit,minmax(240px,1fr));
  gap:20px;
  margin-top:36px;
}

.card {
   background:var(--blue);
  border:3px solid rgba(168, 223, 193, 0.03);
  padding:18px;
  border-radius:var(--radius);
  box-shadow: 0 8px 30px rgba(2,6,8,0.6); 
}
/* NAVBAR */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  padding: 22px 40px;
  border-bottom: 1px solid #111010;
}

.navbar nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #333;
  font-size: 16px;
}

.join-btn {
  padding: 10px 16px;
  background: black;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

/* BRAND */
#logo img {
    width: 35px;
    height: auto;
}
.brand {
  display:flex;
  align-items:center;
  gap:12px;
}
img {
    max-width: 100%;
    height: auto;
    display: block;
}
/* HERO */
.online-hero {
  text-align: center;
  padding: 80px 20px;
  background: linear-gradient(to bottom right, #72a5b9, #b3e6ce);
  color: #fff;
  border-radius: 0 0 30px 30px;
}

.online-hero h1 {
  font-size: 42px;
  margin-bottom: 10px;
}

.online-hero p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto 20px;
}

.coach-btn {
  padding: 12px 25px;
  background: #111827;
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
}

/* FEATURES */
.coaching-features {
  padding: 50px 40px;
  text-align: center;
  background: url("img gym/gym-website-background-images.jpg") no-repeat center center;
    background-size: cover;

}

.coaching-features h2 {
  font-size: 36px;
  margin-bottom: 25px;
  color: #111827;
}

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

.feature-card {
  background: #F3F4F6;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}

.feature-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

/* PRICING */
.pricing-box {
  padding: 60px 40px;
  text-align: center;
  background: #f9f9f9;
}

.pricing-box h2 {
  font-size: 36px;
  margin-bottom: 30px;
  color: #111827;
}

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

.price-card {
  background: rgb(245, 235, 235);
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  position: relative;
}

.price-card.popular {
  border: 2px solid #72a5b9;
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #72a5b9;
  color: white;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 12px;
}

.price-card h3 {
  font-size: 24px;
  color: #111827;
}

.price {
  font-size: 32px;
  color: #72a5b9;
  margin: 10px 0 15px;
  font-weight: bold;
}

.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}

.price-card ul li {
  margin: 8px 0;
}

.select-plan {
  display: inline-block;
  padding: 10px 20px;
  background: #111827;
  color: white;
  border-radius: 8px;
  text-decoration: none;
}


/* CONTENT LAYOUT */
.content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 35px;
}

/* BLOG CARDS */
.blog-card {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 25px;
}

.blog-card .date {
  font-size: 14px;
  color: #666;
}

.blog-card h2 {
  margin: 10px 0;
  font-size: 22px;
}

.read-more {
  text-decoration: none;
  font-size: 15px;
  margin-top: 15px;
  display: inline-block;
}

/* GALLERY */
.gallery-section h2 {
  margin-bottom: 20px;
  font-size: 24px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-grid img {
  width: 100%;
  border-radius: 10px;
  height: 160px;
  object-fit: cover;
}
/* TRANSFORM HEADER */
.transform-header {
  text-align: center;
  padding: 60px 20px;
}

.transform-header h1 {
  font-size: 42px;
  color: #111827;
}

.transform-header p {
  color: #555;
  margin-top: 10px;
  font-size: 18px;
}

/* GRID */
.transform-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    background: url("img gym/gym-website-background-images.jpg") no-repeat center center;
    background-size: cover;
  gap: 30px;
  padding: 50px 40px;
}

.transform-card {
  background: #F3F4F6;
  border-radius: 14px;
  padding: 15px;
  text-align: center;
  overflow: hidden;
  transition: 0.3s;
}

.transform-card img {
  width: 100%;
  border-radius: 12px;
  transition: 0.4s ease;
}

.transform-card:hover img {
  transform: scale(1.07);
}

.transform-card h3 {
  color: #111827;
  margin-top: 12px;
  font-size: 20px;
}

/* CTA SECTION */
.join-section {
  text-align: center;
  padding: 60px 20px;
  background: linear-gradient(to bottom right, #72a5b9, #b3e6ce);
  color: #fff;
  margin-top: 40px;
}

.join-section h2 {
  font-size: 34px;
}

.join-section p {
  font-size: 18px;
  margin: 10px 0 20px;
}

.join-btn {
  padding: 12px 25px;
  background: #111827;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-size: 18px;
}

/* ---------- REVIEW PAGE ---------- */


.container h1 {
  font-size: 2.4rem;
  margin-bottom: 10px;
  color: #d9e70c;
}

.container p {
  font-size: 1.1rem;
  color: #555;
  margin-bottom: 40px;
}
/* NAVBAR (optional polish) */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 40px;
  font-weight: bold;
  background: #ffffff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar nav a {
  margin: 0 12px;
  text-decoration: none;
  color: #111827;
  font-weight: 500;
}

.navbar nav a.active {
  color: #72a5b9; /* blue */
  font-weight: 700;
}

.login-btn {
  padding: 8px 16px;
  background: #72a5b9;
  color: white !important;
  border-radius: 6px;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

/* .google-review-badge {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #ffffff;
  padding: 18px 24px;
  border-radius: 14px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  max-width: 520px;
  margin: 30px auto;
}

.google-logo {
  width: 36px;
}

.google-rating {
  flex: 1;
}

.google-rating .stars {
  color: #fbbc04;
  font-size: 20px;
  line-height: 1;
}

.rating-text {
  font-size: 14px;
  color: #555;
}

.google-review-btn {
  padding: 10px 16px;
  border-radius: 8px;
  border: 1px solid #dadce0;
  background: #fff;
  color: #1a73e8;
  font-weight: 600;
  text-decoration: none;
  transition: 0.2s;
}

.google-review-btn:hover {
  background: #f1f5ff;
} */

/* MODERN REVIEW HERO */
.review-hero {
  padding: 80px 20px;
  display: flex;
  justify-content: center;
}

.review-glass {
  max-width: 1100px;
  width: 100%;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  padding: 50px;
  border-radius: 28px;
  background: linear-gradient(
    135deg,
    rgba(255, 245, 247, 0.9),
    rgba(240, 249, 255, 0.9)
  );
  box-shadow: 0 30px 80px rgba(0,0,0,0.12);
  backdrop-filter: blur(12px);
}

.review-left .badge {
  display: inline-block;
  background: #e8f0fe;
  color: #1a73e8;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 16px;
}

.review-left h2 {
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.review-left h2 span {
  color: #624aec;
}

.review-left p {
  font-size: 16px;
  color: #444;
  max-width: 420px;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 20px 0 30px;
}

.rating-row .stars {
  font-size: 22px;
  color: #fbbc04;
}

.review-btn {
  display: inline-block;
  padding: 14px 26px;
  border-radius: 14px;
  background: linear-gradient(135deg, #ec4899, #f97316);
  color: white;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 15px 35px rgba(236,72,153,0.35);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.review-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 45px rgba(236,72,153,0.45);
}

/* RIGHT IMAGE */
.review-right img {
  width: 100%;
  height: 100%;
  border-radius: 22px;
  object-fit: cover;
}

/* MOBILE */
@media (max-width: 900px) {
  .review-glass {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .review-left p {
    margin: auto;
  }

  .rating-row {
    justify-content: center;
  }
}


.login-btn {
  padding: 8px 16px;
  background: #72a5b9;
  color: white !important;
  border-radius: 6px;
}
.instagram-row {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap; /* responsive */
}

.instagram-row blockquote {
  max-width: 360px !important;
  width: 100% !important;
  background: #dfa5a5;
  border-radius: 12px;
}

body {
  font-family: Arial, sans-serif;
  background: #f4f6f8;
  margin: 0;
  padding: 0;
}

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

/* HEADINGS */
h1, h2 {
  text-align: center;
}





/* SLIDER */
.review-slider {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  padding: 10px;
}
.review-card {
  background: #fff;
  min-width: 250px;
  padding: 15px;
  border-radius: 10px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.review-card .stars {
  color: gold;
}

/* ADMIN */
.admin-title {
  margin-top: 40px;
}
.admin-review {
  background: #fff;
  padding: 10px;
  margin: 10px 0;
  border-radius: 8px;
}
.admin-review button {
  margin-right: 5px;
}

/* CONTACT HEADER */
.contact-header {
  text-align: center;
  padding: 60px 20px;
}

.contact-header h1 {
  font-size: 42px;
  color: #111827;
}

.contact-header p {
  font-size: 18px;
  color: #555;
  margin-top: 10px;
}

/* CONTACT SECTION */
.contact-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  padding: 50px 40px;
}

/* FORM */
.contact-form {
  background: #f5f6f3;
  padding: 25px;
  border-radius: 14px;
}

.contact-form h2 {
  margin-bottom: 20px;
  color: #111827;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 16px;
}

.send-btn {
  width: 100%;
  padding: 12px;
  background: #72a5b9;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}

.send-btn:hover {
  background: #5f8fa1;
}

/* INFO */
.contact-info {
  padding: 25px;
  border-radius: 14px;
  background: white;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}

.contact-info h2 {
  margin-bottom: 15px;
  color: #111827;
}

.contact-info p {
  margin: 10px 0;
  font-size: 16px;
}

.whatsapp-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 20px;
  background: #25D366;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-size: 18px;
}

.whatsapp-btn:hover {
  background: #1da954;
}

/* MAP */
.map-box iframe {
  border-radius: 14px;
  margin: 40px 0 0;
}


/* PAGE HEADER */
.services-header {
  text-align: center;
  padding: 50px 20px;
}

.services-header h1 {
  font-size: 42px;
  color: #111827;
}

.services-header p {
  color: #555;
  margin-top: 10px;
}

/* GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    background: url("img gym/gym-website-background-images.jpg") no-repeat center center;
    background-size: cover;
  gap: 30px;
  padding: 50px 40px;
}

.service-card {
  background: #F3F4F6;
  border-radius: 14px;
  padding: 20px;
  text-align: center;
  transition: 0.3s;
}

.service-card img {
  width: 100%;
  border-radius: 12px;
  margin-bottom: 15px;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.service-card h2 {
  color: #111827;
  font-size: 22px;
  margin-bottom: 8px;
}

.service-card p {
  color: #444;
  font-size: 15px;
}


/* ---------- FOOTER FIXES ---------- */

.footer {
  background: #f5f5f5;
  padding: 40px 20px 10px;
  margin-top: 60px;
}

.footer-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.footer-about {
  flex: 1;
  min-width: 280px;
}

.footer-about .logo {
  width: 70px;
  margin-bottom: 10px;
}

.about-text {
  max-width: 320px;
  color: #555;
  font-size: 0.95rem;
}

.app-buttons {
  margin-top: 15px;
}

.app-btn {
  width: 140px;
  margin-right: 10px;
}

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

.footer-title {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.footer-list li,
.footer-list p {
  list-style: none;
  margin-bottom: 6px;
  color: #444;
  font-size: 0.95rem;
}

.footer-list a {
  color: #444;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 25px;
  text-align: center;
  font-size: 0.9rem;
  color: #666;
}


/* FOOTER */
/* Footer container */
.footer {
    padding: 40px 20px 20px;
    width: 100%;
    background: #111;
    color: #ccc;
    font-family: Arial, sans-serif;
}

/* Top Section (flex layout) */
.footer-top {
    display: flex;
    flex-direction: column;
    gap: 40px;
    border-bottom: 1px solid #555;
    padding-bottom: 30px;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* About section */
.footer-about {
    max-width: 350px;
}

.logo {
    height: 44px;
}

.about-text {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.6;
}

/* App store buttons */
.app-buttons {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.app-btn {
    height: 40px;
    border: 1px solid white;
    border-radius: 6px;
}

/* Footer right section (links + contact) */
.footer-links {
    display: flex;
    gap: 60px;
}

@media (max-width: 600px) {
    .footer-links {
        flex-direction: column;
        gap: 30px;
    }
}

/* Titles */
.footer-title {
    font-weight: bold;
    margin-bottom: 12px;
}

/* List styling */
.footer-list {
    font-size: 14px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-list li,
.footer-list p {
    margin-bottom: 8px;
}

/* Bottom text */
.footer-bottom {
    text-align: center;
    font-size: 14px;
    margin-top: 20px;
    color: #ccc;
}

.footer-bottom a {
    color: #fff;
    text-decoration: none;
}

/* ROOT COLORS */
:root {
    --green: #b88a56;
    --blue: #15ade996;
    --red: #ebafaf;
    --bg: #4edf312d;
    --text: #86a0da;
    --card-bg: #e7e76e;
    --section-bg: #a6d0e0;
}

/* RESET */
body {
    margin: 0;
    font-family: "Inter", sans-serif;
    color: #111;
    background: #fff;
}

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

/* CONTAINER */
.container {
    max-width: 1120px;
    margin: 36px auto;
    padding: 0 22px;
}

/* ============================
   NAVBAR
============================ */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    font-weight: bold;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.navbar nav {
    display: flex;
    gap: 15px;
}

.navbar nav a {
    text-decoration: none;
    color: #111827;
    font-weight: 500;
}

/* Mobile Navbar */
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 10px 0;
        
    }

    .navbar nav {
        flex-direction: column;
        gap: 8px;
    }
}

/* BRAND */
#logo img {
    width: 35px;
}

/* ============================
   HERO SECTION
============================ */
.hero {
    padding: 140px 32px;
    color: #fff;
    background: url("/img gym/IMG_8408.JPG") center / cover fixed;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

/* Dark overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

/* Ensure content above overlay */
.hero-content,
.hero .grid,
.hero .card {
    position: relative;
    z-index: 2;
}

/* ===============================
   HERO TEXT
================================ */
.hero-content {
    max-width: 900px;
    margin-bottom: 60px;
    text-align: left;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    color: var(--green);
    margin-bottom: 16px;
}

.hero p {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 680px;
    margin-bottom: 32px;
}

/* ===============================
   HERO BUTTON
================================ */
.hero-actions {
    display: flex;
    justify-content: center;

}

.hero .btn-primary {
    padding: 14px 32px;
    font-size: 1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, var(--green), var(--blue));
    color: #000;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}

.hero .btn-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 30px rgba(0,0,0,0.6);
}

/* ===============================
   HERO CARDS
================================ */
.hero .grid {
    margin-top: 60px;
}

.hero .card {
    background: rgba(180, 218, 240, 0.95);
    color: #111;
    border-radius: 14px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.25);
    backdrop-filter: blur(6px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.hero .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}

/* ===============================
   MOBILE OPTIMIZATION
================================ */
@media (max-width: 768px) {
    .hero {
        padding: 90px 20px;
        background-attachment: scroll;
    }

    .hero h1 {
        font-size: 2rem;
    }

    .hero p {
        font-size: 0.95rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-content {
        text-align: center;
    }
}


/* ============================
   GRID UNIVERSAL
============================ */
.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px,1fr));
    gap: 20px;
    margin-top: 36px;
}

/* ============================
  CARD UNIVERSAL
============================ */
.card {
    background: var(--blue);
    border-radius: 10px;
    padding: 18px;
    box-shadow: 0 8px 30px rgba(2,6,8,0.3);
}

/* ============================
  ONLINE COACHING / FEATURES / SERVICES / TRANSFORMS
============================ */

.feature-grid,
.pricing-grid,
.services-grid,
.transform-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

/* Responsive */
@media (max-width: 600px) {
    .feature-grid,
    .pricing-grid,
    .services-grid,
    .transform-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

/* ============================
   GALLERY
============================ */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 12px;
}

/* ============================
  CONTACT PAGE
============================ */
.contact-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

/* Mobile Contact */
@media (max-width: 500px) {
    .contact-container {
        grid-template-columns: 1fr;
        padding: 20px;
    }
}

/* ============================
   FOOTER
============================ */
.footer {
    background: #111;
    color: #ccc;
    padding: 40px 20px;
}

.footer-top {
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid #555;
}

@media (min-width: 768px) {
    .footer-top {
        flex-direction: row;
        justify-content: space-between;
    }
}

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

@media (max-width: 600px) {
    .footer-links {
        flex-direction: column;
        gap: 20px;
    }
}

.footer-bottom {
    text-align: center;
    margin-top: 20px;
}

/* NAVBAR BASE */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 25px;
    background: #fff;
    font-weight: bold;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
}
/* LOGIN PAGE */
.login-section {
    display: flex;
    justify-content: center;
    padding: 80px 20px;
}

.login-box {
    background: #F3F4F6;
    padding: 35px;
    border-radius: 14px;
    width: 100%;
    max-width: 420px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    text-align: center;
}

.login-box h2 {
    font-size: 32px;
    color: #111827;
    margin-bottom: 8px;
}

.login-box p {
    color: #555;
    margin-bottom: 25px;
}

.login-form input {
    width: 100%;
    padding: 12px;
    margin: 10px 0;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 16px;
}

.login-submit {
    width: 100%;
    background: #72a5b9;
    color: white;
    border: none;
    padding: 12px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
}

.login-submit:hover {
    background: #6193a5;
}

.signup-text {
    margin-top: 15px;
}

.signup-text a {
    color: #72a5b9;
    font-weight: bold;
    text-decoration: none;
}


/* HAMBURGER (Mobile Only) */
.hamburger {
    font-size: 28px;
    cursor: pointer;
    display: none;
}

/* NAV LINKS */
.navbar nav {
    display: flex;
    gap: 20px;
}

/* ----------------------------
   MOBILE MENU STYLES
----------------------------- */
@media (max-width: 768px) {
    .hamburger {
        display: block;
    }

    .navbar {
        padding: 12px 20px;
    }

    .navbar nav {
        display: none;
        flex-direction: column;
        background: #fff;
        position: absolute;
        top: 65px;
        width: 100%;
        left: 0;
        text-align: center;
        padding: 20px 0;
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

    .navbar nav a {
        padding: 10px 0;
        display: block;
    }

    /* Show menu when active */
    .navbar nav.active {
        display: flex;
    }
}
