/* Import Google Font */
body, html {
    font-family: 'Montserrat', sans-serif;
    background: #fff;
    color: #333;
    line-height: 1.6;
    margin: 0;
    padding: 0;
  }
  
  /* Container */
  .container {
    width: 90%;
    max-width: 1200px;
    margin: auto;
  }
  
  /* Age Verification Modal */
  #ageModal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }
  
  .modal-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/skyline.png') no-repeat center center/cover;
    filter: brightness(0.4);
    z-index: 1;
  }
  
  .modal-content {
    position: relative;
    z-index: 2;
    background: rgba(255, 255, 255, 0.97);
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    max-width: 400px;
    width: 90%;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    animation: fadeIn 0.5s ease-in-out;
  }
  
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .modal-logo {
    max-width: 120px;
    margin-bottom: 1rem;
  }
  
  .modal-content h2 {
    margin-bottom: 1rem;
    font-size: 1.8rem;
    color: #333;
  }
  
  .modal-content p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    color: #666;
  }
  
  .modal-content input[type="date"] {
    padding: 0.5rem;
    font-size: 1rem;
    margin-bottom: 1.5rem;
    border: 1px solid #ccc;
    border-radius: 3px;
    width: 100%;
  }
  
  .age-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  
  .modal-content .btn {
    padding: 0.75rem 1.5rem;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  .modal-content .btn:hover {
    background: #444;
  }
  
  /* Header */
  header {
    background: linear-gradient(135deg, #F5F5DC, #EDE0D4);
    padding: 1rem 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
  }
  
  .nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  
  .logo img {
    max-width: 150px;
    height: auto;
  }
  
  nav ul {
    list-style: none;
    display: flex;
  }
  
  nav ul li {
    margin-left: 1.5rem;
  }
  
  nav ul li a {
    color: #000;
    text-decoration: none;
    font-size: 1rem;
    transition: color 0.3s;
  }
  
  nav ul li a:hover {
    color: #555;
  }
  
  /* Hero Section */
  #hero {
    position: relative;
    height: 90vh;
    overflow: hidden;
    margin-top: 80px;
  }
  
  .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/skyline.png') no-repeat center center/cover;
    z-index: 1;
  }
  
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 2;
  }
  
  .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #fff;
    animation: fadeInUp 1s ease-out;
  }
  
  @keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  .hero-logo {
    max-width: 250px;
    margin-bottom: 1rem;
  }
  
  #hero h1 {
    font-size: 4rem;
    margin-bottom: 1rem;
  }
  
  #hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
  
  .btn {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background: #fff;
    color: #000;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s, transform 0.3s;
  }
  
  .btn:hover {
    background: #ddd;
    transform: scale(1.03);
  }
  
  /* Learn Section */
  #learn {
    padding: 6rem 0;
    text-align: center;
    background: #f7f7f7;
  }
  
  #learn h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }
  
  #learn p {
    font-size: 1.1rem;
    max-width: 800px;
    margin: auto;
  }
  
  .learn-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .learn-item {
    width: 300px;
    background: #fff;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    text-align: left;
  }
  
  .learn-item h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
  }
  
  .learn-item p {
    font-size: 1rem;
    color: #555;
  }
  
  /* Products Section */
  .product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: center;
    margin-top: 2rem;
  }
  
  .product {
    width: 300px;
    text-align: center;
    transition: transform 0.3s;
  }
  
  .product:hover {
    transform: scale(1.02);
  }
  
  .product img {
    max-width: 100%;
    border-radius: 5px;
    margin-bottom: 1rem;
  }
  
  /* Contact Section */
  #contact form {
    max-width: 600px;
    margin: auto;
    display: flex;
    flex-direction: column;
  }
  
  #contact form input,
  #contact form textarea {
    padding: 1rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 3px;
    transition: border 0.3s;
  }
  
  #contact form input:focus,
  #contact form textarea:focus {
    border-color: #999;
  }
  
  #contact form button {
    padding: 1rem;
    background: #000;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    transition: background 0.3s;
  }
  
  #contact form button:hover {
    background: #333;
  }
  
  /* Footer */
  footer {
    background: #000;
    color: #fff;
    text-align: center;
    padding: 1rem 0;
  }
  