/* xs */
/* @media(min-width: 1536px){}

/* sm */
/* @media(min-width: 1536px){}

/* md */
/* @media(min-width: 768px){}

/* lg */
/*@media(min-width: 1024px){}

/* xl */
/*@media(min-width: 1280px){}

/* 2xl */
/*@media(min-width: 1536px){} */
:root {
    --clr-primary : #F99100;
    --clr-light : white;
}

button {
    border: none;
}
.btn {
    display: inline-block;
    font-weight: 100;
    width: 100px;
    height: 40px;
    text-decoration: none;
    letter-spacing: -0.05em;
    background-color: var(--clr-primary);
    color: var(--clr-light);
    padding: 0.5em 1em;
    border-radius: 4px;
    box-shadow: 0 10px 20px rgb(255, 119, 0), 0 6px 6px
    rgb(255, 119, 0, 0.5), 0  0 100px -10px var(--clr-primary);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 28px rgba(0, 113, 227, 0.25), 0 10px 10px
     rgb(0, 113, 227, 0.22), 0  0 120px -10px var(--clr-primary);
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0.5rem;
    padding-right: 0.5rem;

   
  

}

.section{
    margin-top: 3rem;

}


/* xs */
@media(min-width: 475px){
    .container {
        max-width: 475px;

    }
}

/* sm */
@media(min-width: 640px){
    .container {
        max-width: 640px;
    }
}

/* md */
@media(min-width: 768px){
    .container {
        max-width: 768px;
    }
}

/* lg */
@media(min-width: 1024px){
    .container {
        max-width: 1024px;
      
    }
}

/* xl */
@media(min-width: 1280px){
    .container {
        max-width: 1280px;
    }
}

/* 2xl */
@media(min-width: 1536px){
    .container {
        max-width: 1536px;
    }
} 

body {
    font-family: sans-serif;
}

hr {
    margin-top: 30px;
    color: rgb(174, 169, 169);
    width: 100%;

}

.header {
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    img {
        margin: 10px;
        width: 30px;
    }
}

.register {
    display: flex;
    justify-content: center;
    gap: 2rem;
}

.main {
    text-align: center;
    .mainImage {
        width: 100%;
        max-width: 100%;
        margin: 5px;
        object-fit: contain;
    }
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #f9f9f9;
    padding: 20px;
}

.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    padding: 20px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

h1 {
    text-align: center;
    font-size: 24px;
    margin-bottom: 10px;
}

.gift-code {
    font-size: 24px;
    font-weight: bold;
    text-align: center;
    background: linear-gradient(45deg, #ff8c1a, #ff4500);
    color: white;
    padding: 20px;
    border-radius: 10px;
    letter-spacing: 2px;
    box-shadow: 0px 4px 15px rgba(255, 140, 26, 0.8);
    transition: all 0.3s ease-in-out;
    text-shadow: 0 0 5px rgba(255, 69, 0, 0.7), 0 0 10px rgba(255, 69, 0, 0.7);
}

/* Add a glowing hover effect */
.gift-code:hover {
    transform: scale(1.05); /* Slight zoom effect */
    box-shadow: 0px 0px 20px rgba(255, 140, 26, 1), 0px 0px 40px rgba(255, 69, 0, 0.8);
    cursor: pointer;
}
.code {
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    padding: 20px;
    overflow-wrap: break-word;
    border-radius: 10px;
    letter-spacing: 2px;
    box-shadow: 0px 4px 15px rgba(255, 140, 26, 0.8);

}

/* Table Styling */
table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    border-radius: 8px; /* Rounded corners */
    overflow: hidden; /* Ensures the corners are respected */
}

table th, table td {
    padding: 15px;
    text-align: left;
    color: white;
    font-size: 16px;
}

/* Table Header */
table th {
    background: linear-gradient(45deg, #ff8800, #ff5500); /* Gradient orange */
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-bottom: 3px solid #ff5500;
}

/* Table Body */
table td {
    background-color: #ffb347; /* Soft orange */
    border-bottom: 2px solid #ff8800;
}

/* Hover Effect for Table Rows */
table tr:hover td {
    background-color: #ff8c1a;
    transition: background-color 0.3s ease;
}

/* First Column (Headers) Styling */
table th:first-child, table td:first-child {
    background-color: #ff8800;
    color: white;
    font-weight: bold;
}

/* Additional Hover Effect */
table tr:hover {
    cursor: pointer;
    transform: translateY(-2px);
    box-shadow: 0px 6px 15px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}


a {
    color: var(--clr-primary);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

footer {
    text-align: center;
    margin-top: 20px;
    font-size: 14px;
    color: #666;
}

footer p {
    padding-top: 10px;
    border-top: 1px solid #ddd;
}

/* navbar */

.menu-icon {
    width: 50px;
    cursor: pointer;
    z-index: 1000; /* Ensures the menu icon stays on top */
}


.navbar {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    background-color: #ff5500;
    padding: 20px;
    position: fixed;
    top: 0;
    right: -100%; /* Initially hide the navbar by positioning it off-screen on the right */
    height: 100vh; /* Full height for mobile */
    width: 250px; /* Width for the sidebar */
    transition: right 0.5s ease; /* Slide-in effect from the right */
    z-index: 999;
}

.navbar.open {
    right: 0; /* When the 'open' class is added, the navbar slides in from the right */
}

.nav-links {
    list-style: none;
    width: 100%;
    padding: 0;
}

.nav-links li {
    margin: 15px 0;
}

.nav-links a {
    text-decoration: none;
    color: white;
    padding: 10px 0;
    width: 100%;
    display: block;
    transition: background 0.3s ease, transform 0.2s ease;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

/* Dropdown styling */
.dropdown {
    display: none;
    list-style: none;
    background-color: #ff4500;
    padding: 10px 0;
    border-radius: 5px;
    margin-top: 5px;
}

.nav-links li:hover .dropdown {
    display: block;
}

.dropdown li {
    margin: 10px 0;
}

.dropdown a {
    padding-left: 20px; /* Indent for dropdown items */
}

.dropdown a:hover {
    background: rgba(255, 255, 255, 0.3);
}

/* Responsive breakpoint for mobile */
@media (min-width: 768px) {
    .navbar {
        display: none; /* Hide navbar on larger screens */
    }
}

