* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

:root {
    --primary-navy: #7d9cdd;
    --accent-gold: #f9a3f2;
    --bg-light: #ffffff;
}

body {
    background-color: var(--bg-light);
    color: #7d9cdd;
    line-height: 1.6;
}

/*nav*/
header {
    position: relative; 
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                      url('rushhead.png');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
}

header h1 { font-size: 3.5rem; text-shadow: 2px 2px 10px rgba(0,0,0,0.5); }



.home-btn {
    display: inline-block;
    color: white;
    text-decoration: none;
    border: 2px solid white;
    padding: 8px 20px;
    border-radius: 25px;
    transition: 0.3s;
    font-weight: bold;


    position: absolute;  
    top: 20px;           
    left: 20px;          
    margin-bottom: 0;   
    z-index: 10;         
}

.home-btn:hover {
    background: white;
    color: var(--primary-navy);
}


main {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}


.content-container {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 80px;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}


.content-container:nth-child(even) { flex-direction: row-reverse; }

.text-side { flex: 1.5; }
.image-side { flex: 1; }
.image-side img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

h3 { color: var(--primary-navy); margin-bottom: 15px; font-size: 1.8rem; }
ul, ol { margin-left: 20px; margin-top: 10px; }

/*merch*/
.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 40px;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: 0.3s;
    text-align: center;
}

.product-card:hover { transform: translateY(-10px); }

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
}

.card-info { padding: 20px; }

.price {
    font-weight: bold;
    color: var(--primary-navy);
    font-size: 1.4rem;
    margin: 10px 0;
}

.add-to-cart {
    background: var(--primary-navy);
    color: white;
    border: none;
    padding: 12px 0;
    width: 100%;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.add-to-cart:hover { background: var(--accent-gold); color: var(--primary-navy); }


@media (max-width: 850px) {
    .content-container, .content-container:nth-child(even) {
        flex-direction: column;
        text-align: center;
    }
    header h1 { font-size: 2.5rem; }
    .product-grid { grid-template-columns: 1fr; }
}


.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}


.modal-content {
    background: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.modal-content h2 {
    color: #f9a3f2; 
    margin-top: 0;
}

.close-btn {
    margin-top: 20px;
    padding: 10px 25px;
    background-color: #f9a3f2;
    color: #ffffff;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
}

.close-btn:hover {
    background-color: #f9a3f2;
}


body {
  margin: 0;
  font-family: Arial, sans-serif;
}


.navbar {
  display: flex;
  justify-content: space-between; 
  align-items: center;
  background-color: #7d9cdd; 
  padding: 1rem 2rem;
  color: white;
}


.nav-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
}


.nav-links li {
  padding: 0 15px;
}


.nav-links a {
  color: white;
  text-decoration: none; 
  font-weight: bold;
}


.nav-links a:hover {
  color: #f9a3f2; 
}

.simple-footer {
   
    width: 100%;
    
    
    margin: 0;
    padding: 20px 0; 
    
    background-color: #7d9cdd; 
    color: white;
    text-align: center;
}


body {
    margin: 0;
    padding: 0;
}


.insta-btn {
    display: inline-block;
    background-color: #7d9cdd; 
    color: white;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: bold;
    border-radius: 50px; 
    transition: transform 0.3s, background-color 0.3s;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}


.insta-btn:hover {
    background-color: #f9a3f2; 
    transform: translateY(-3px); 
    color: white;
}