body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #000000;
}

header {
    display: flex;
    align-items: center;
    background-color: #000000; /* Dark Blue */
    color: white;
    padding: 10px 20px;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

.hero {
    background-image: url('6184940.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.year-selection button {
    background-color: #FFD700; /* Yellow */
    color: #003366;
    border: none;
    padding: 15px 30px;
    margin: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.year-selection button:hover {
    background-color: #FFA500; /* Orange */
    transform: scale(1.05);
}

main {
    padding: 20px;
    text-align: center;
}

.semester-selection,
.branch-selection,
.cycle-selection,
.subject-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.semester-selection button,
.branch-selection button,
.cycle-selection button {
    margin: 10px;
    padding: 15px 30px;
    font-size: 18px;
    background-color: #FFD700;
    color: #003366;
    border: none;
    cursor: pointer;
    transition: transform 0.3s, background-color 0.3s;
}

.semester-selection button:hover,
.branch-selection button:hover,
.cycle-selection button:hover {
    background-color: #FFA500;
    transform: scale(1.05);
}

.subject {
    margin: 10px;
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    width: calc(100% / 3 - 40px);
    box-sizing: border-box;
    background-color: white;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.subject a {
    color: #003366;
    text-decoration: none;
    font-weight: bold;
}

.subject a:hover {
    text-decoration: underline;
}

/* Mobile styles */
@media (max-width: 768px) {
    .year-selection button,
    .semester-selection button,
    .branch-selection button,
    .cycle-selection button {
        padding: 10px 20px;
        font-size: 16px;
    }

    .subject {
        width: calc(100% - 40px);
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 40px;
    }

    header {
        flex-direction: column;
        text-align: center;
    }

    .year-selection button,
    .semester-selection button,
    .branch-selection button,
    .cycle-selection button {
        width: 100%;
        margin: 5px 0;
        padding: 10px;
    }

    .subject {
        width: 100%;
        padding: 10px;
    }
}



.subject h3 {
    margin-top: 0;
    color: #003366;
}

.subject p {
    margin: 10px 0;
}

.subject a {
    color: #FFD700; /* Yellow */
    text-decoration: none;
    font-weight: bold;
}

.subject a:hover {
    text-decoration: underline;
}

@media (max-width: 768px) {
    .subject-list .subject {
        width: calc(100% - 40px);
    }
}


.branch-page {
    background-image: url('6184940.jpg'); /* Update this path to your background image */
    background-size: cover;
    background-position: center;
    padding: 40px 20px;
    color: white;
    text-align: center;
}

.branch-page h2 {
    font-size: 2em;
    margin-bottom: 20px;
    font-weight: bold;
}

.branch-selection {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding: 0 10px;
}

.branch-selection button {
    background-color: #FFD700; /* Dark Blue */
    color: rgb(0, 0, 0);
    border: none;
    border-radius: 8px;
    padding: 15px 20px;
    font-size: 1em;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.3s;
    text-align: center;
    max-width: calc(50% - 20px); /* Responsive width for larger screens */
    box-sizing: border-box;
}

.branch-selection button:hover {
    background-color: #0056b3; /* Lighter Blue */
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .branch-selection button {
        width: calc(100% - 20px); /* Full width for mobile screens */
        font-size: 0.9em;
        padding: 12px;
    }
    
    .branch-page h2 {
        font-size: 1.5em; /* Smaller font size for mobile screens */
    }
}

@media (max-width: 480px) {
    .branch-page {
        padding: 20px 10px; /* Less padding on very small screens */
    }

    .branch-selection button {
        padding: 10px;
        font-size: 0.8em;
    }

    .branch-page h2 {
        font-size: 1.2em; /* Even smaller font size for very small screens */
    }
}


/* Year Selection Buttons */

/* Header Styles */
header {
    display: flex;
    align-items: center;
    background-color: #000000; /* Dark Blue */
    color: white;
    padding: 10px 20px;
}

.logo img {
    height: 50px;
    margin-right: 10px;
}

/* Hero Section Styles */
.hero {
    background-image: url('6184940.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 20px;
}

.hero h1 {
    margin-bottom: 20px;
    font-size: 2em;
    font-weight: bold;
}

/* Year Selection Buttons */
.year-selection {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px; /* Space between buttons */
    padding: 20px;
}

.year-selection button {
    background: linear-gradient(135deg, #FFD700, #FFA500); /* Gradient background */
    color: #003366; /* Dark Blue */
    border: none;
    border-radius: 12px; /* Rounded corners */
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    box-sizing: border-box;
    outline: none; /* Remove default focus outline */
    display: flex;
    align-items: center;
    gap: 10px; /* Space between icon and text */
}

.year-selection button i {
    font-size: 24px; /* Icon size */
}

.year-selection button:hover {
    background: linear-gradient(135deg, #FFA500, #FF4500); /* Darker gradient on hover */
    color: #f0f0f0; /* Light text color on hover */
    transform: scale(1.05);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.3);
}

.year-selection button:focus {
    border: 2px solid #003366; /* Focus outline */
    outline: none;
}

.year-selection button:active {
    background: linear-gradient(135deg, #FF4500, #FFA500); /* Slightly different gradient on click */
    transform: scale(1);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}


/* Mobile styles */
@media (max-width: 768px) {
    .year-selection {
        gap: 15px; /* Reduced space between buttons */
    }

    .year-selection button {
        padding: 10px 20px;
        font-size: 16px;
        margin: 0; /* Ensure no extra margin around buttons */
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.5em;
    }

    .year-selection {
        gap: 10px; /* Further reduce space between buttons */
    }

    .year-selection button {
        padding: 10px;
        font-size: 14px;
        margin: 0; /* Ensure no extra margin around buttons */
    }
}


.anton-regular {
    font-family: "Anton", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .staatliches-regular {
    font-family: "Staatliches", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .keania-one-regular {
    font-family: "Keania One", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  

  .bebas-neue-regular {
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  


.roboto-slab-uniquifier {
  font-family: "Roboto Slab", serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}