/* General Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

body {
    background: #03121D;
    color: white;
    overflow-x: hidden;
}

/* Header */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    position: fixed;
    width: 100%;
    background: #032740;
    z-index: 1000;
}

.logo {
    font-size: 24px;
    cursor: pointer;
    font-weight: bold;
    color: lightskyblue;
}

.availability {
    font-size: 14px;
    color: white;
}

.menu-icon {
    font-size: 18px;
    cursor: pointer;
    background: rgb(95, 174, 224);
    color: black;
    padding: 5px 10px;
    border-radius: 5px;
}


/* Navigation Menu */
nav {
    position: fixed;
    top: 0;
    right: -300px;
    width: 250px;
    height: 100vh;
    background: #000;
    padding-top: 60px;
    transition: 0.3s;
}

nav.active {
    right: 0;
}

.close-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    color: white;
}

nav ul {
    list-style: none;
    text-align: center;
}

nav ul li {
    margin: 20px 0;
}

nav ul li a {
    color: white;
    text-decoration: none;
    font-size: 18px;
    transition: 0.3s;
    font-weight: 700;
}

nav ul li a:hover {
    color: lightskyblue;
}

/* Hero Section */
.hero {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 100px 10%;
    height: 100vh;
    overflow: hidden;
}

h4 span{
    font-size: 14px;
    flex-wrap: wrap;
    gap: 1rem;

}

/* Blurred Background */
.background-blur {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('bbrr1.JPG') no-repeat center center/cover;
    filter: blur(8px);
    z-index: -1;
}

/* Hero Content */
.hero .content {
    max-width: 500px;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;

}

.hero h2{
    font-size: 42px;
    font-weight:900;
    margin-bottom: 10px;

}

.gold {

    color:  rgb(95, 174, 224);
}

.hero p {
    font-size: 20px;
    margin-bottom: 40px;
    font-family: Sylfaen;

}

.btn {
    background: lightskyblue;
    color: black;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    display: inline-block;
    border-radius: 5px;
    transition: 3s;
}

.btn:hover {
    background: white;
    color: black;
}

/* Hero Image */
.hero-image img {
    max-width: 400px;
    border-radius: 10px;
    position: relative;
    z-index: 1;
}

/* Work Section */
p{
    font-size: 16px;
    font-family: Times New Roman;
    text-align: center;
}

.work {
    text-align: center;
    padding: 100px 10%;
}

.work h2 {
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    font-size: 36px;
    margin-bottom: 20px;
}

h4{
    font-size: 18px;
    text-align: left;
}

h4 span{
    font-size: 14px;
    flex-wrap: wrap;
    gap: 1rem;
    font-weight: 600;
    color: #eee;
    padding-top: 2rem;
}

.tags{
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    max-width: 700px;
    padding: 0.5rem 0rem;

}

.tags span{
    background-color: #000000aa;
    border-left: 4px solid#a3d6f7;
    font-size: 12px;
    line-height: 14px;
    text-transform: uppercase;
    font-weight: 500;
    color: #eee;
    padding: 1.2rem 2.4rem;
    padding-left: 0.5rem;
    transition: all 4s;
    cursor: pointer;
}

.tags span :hover{
    padding: 1.2rem 0.5rem;
    padding-left: 2.4rem;
}