*{
    margin: 0;
    padding: o;
}

body{
    background-color: #faf3e5;
    background-size: cover;
    background-position: center;
    position: relative;
    font-family: 'Roboto', sans-serif;
}

.containers{
    background-color: rgb(255, 255, 255);
    width: 30rem;
    background-color: #dbc6a0   ;
    border-radius: 10px;
    margin: auto;
    margin-top: 2rem;
    padding: 2rem;
    border: solid 1px;
}

h1{
    color: white;
    margin-left: 1rem;
    margin-bottom: 5px;
    color: #2b3838;
    padding-bottom: 1rem;
}


.login-btn{
    text-align: center;
    width: 7rem;
    height: 6vh;
    padding: 8px;
    border: none;
    background-color: #ab966d;
    color: #fff;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3 ease;
    margin-top: 15px;
    border-radius: 25px;
    margin-right: 1.5rem;
    float: right;
    
}

#loginForm{
   margin-left: 1rem;

}

input{
    width: 90%;
    height: 2rem;
}

.containers p {
    margin-bottom: 1rem;
    margin-left: 1rem;
    color: #2b3838;
}


.input-container {
    margin-left: 1rem;
    position: relative;
    margin-bottom: 15px;
}

.input-container i {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    color:#2b3838;
}

.input-container input {
    padding-left: 35px;
    width: 95%;
    height: 7vh;
    box-sizing: border-box;
    border-radius: 10px;
    border-style: none;
    background-color: #ffffff;
}

a{
    color: #ab966d;
}

.fa {
  padding: 20px;
  font-size: 25px;
  width: 60px;
  text-align: center;
  text-decoration: none;
  margin: 5px 2px;
  border: solid black .5px;
  border-radius: 20%;
}

.fa-google {
  background: #dd4b39;
  color: white;
  margin-left: 1.5rem;
}

.fa-facebook {
  background: #3B5998;
  color: white;
}

.login-btn:hover {
    background-color: #8e7d5a; /* darker green on hover */
    transform: scale(1.05);   /* makes it slightly bigger */
  }


:root{
      --bg: #F6F2EA;             /* page background */
      --paper: #FFFDF8;          /* cards / panels */
      --ink: #1D1C1A;            /* primary text */
      --muted-ink:#6B655F;       
      --brand: #C89B3C;          /* gold */
      --brand-ink: #3F2F0A;
      --line: #E8E0D3;           /* borders */
      --accent: #E7D8BE;         /* soft highlight */
      --success:#3A7E4B;         /* green */
      --shadow: 0 10px 30px rgba(0,0,0,.08);
      --radius-xl: 22px;
      --radius-lg: 16px;
      --radius-md: 12px;
      --radius-sm: 10px;
      --container: 1180px;
    }

    /* --- Resets ---------------------------------------------------------- */
    *,*::before,*::after{ 
        box-sizing: border-box; 
    }
    html,body{ 
        margin:0; padding:0; 
    }
    img{
        display:block; max-width:100%; height:auto; 
    }
    a{ 
        color:inherit; text-decoration: none; 
    }
    button{ 
        font:inherit; cursor:pointer;
    }
    input{ 
        font:inherit; 
    }

    body{
      font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, "Helvetica Neue", Arial, "Noto Sans", "Apple Color Emoji","Segoe UI Emoji";
      color: var(--ink);
      background: radial-gradient(1000px 500px at -10% -10%, #FFF 0%, var(--bg) 60%), var(--bg);
    }

    .container{ 
        max-width: var(--container); margin-inline:auto; padding-inline: 20px; 
    }

    /* --- Modal ----------------------------------------------------------- */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: rgba(0, 0, 0, 0.5);
      justify-content: center;
      align-items: center;
      z-index: 1000;
    }

    .modal-content {
      background: #fff;
      padding: 2rem;
      border-radius: 12px;
      width: 90%;
      max-width: 400px;
      text-align: center;
    }

    .modal-content input {
      width: 100%;
      padding: 10px;
      margin: 1rem 0;
      border: 1px solid #ddd;
      border-radius: 6px;
    }

    .modal-content button {
      background: #ab966d;
      color: white;
      border: none;
      padding: 10px 20px;
      border-radius: 6px;
      cursor: pointer;
    }

    .modal-content button:hover {
      background: #8e7d5a;
    }

/* --- Header ---------------------------------------------------------- */
    .site-header{ 
        position: sticky; top:0; 
        z-index:50; backdrop-filter: 
        saturate(140%) blur(6px); 
        background: color-mix(in oklab, var(--bg) 85%, #fff 15%); 
        border-bottom:1px solid var(--line); 
    }
    .nav{ 
        display:flex; 
        align-items:center; 
        gap:18px; 
        padding:14px 0; 
        
    }
    .brand{ 
        font-family: "Playfair Display", serif; 
        font-weight:700; 
        font-size: 22px;
        letter-spacing:.3px; 
    }

    .nav-links{ 
        display:flex; 
        gap:18px; 
        color:var(--muted-ink); 
    }

    .nav-links a{ 
        padding:8px 10px; 
        border-radius: 10px; 
    }
    .nav-links a:hover{
         background: var(--paper); 
         color: var(--ink);
          box-shadow: var(--shadow); }
    .nav-spacer{ 
        flex:1; 
    }
    .search{
         position:relative; 
         display:flex; 
         align-items:center; 
        }
    .search input{ 
        width: 260px; max-width: 55vw; padding:10px 36px 10px 14px; background:var(--paper); border:1px solid var(--line); border-radius: 999px; outline:none; 
    }
    .search svg{
         position:absolute; right: 10px; 
        }
    .actions{ 
        display:flex; align-items:center; gap:10px; 
    }
    .icon-btn{
         display:grid; place-items:center; width:40px; height:40px; border:1px solid var(--line); border-radius: 50%; background:var(--paper); box-shadow: var(--shadow); 
    }

    .hamburger{
         display:none;
    }

    /* Fade-in animations */
    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Apply fade-in to sections */
    .fade-in {
      opacity: 0;
      animation: fadeIn 1s ease forwards;
    }

    .site-header {
      animation: fadeIn 0.8s ease forwards;
    }

    div.containers {
      opacity: 0;
      animation: fadeIn 1s ease 0.2s forwards;
    }

/* --- Responsive ------------------------------------------------------ */
@media (max-width: 980px) {
  .nav-links { display: none; }
  .hamburger { display: grid; }
}

@media (max-width: 560px) {
  .search input { width: 58vw; }
}

