:root{
  --clr-red-700: #CD0505;
  --clr-red-800: #8C0000;
  --clr-orange-600: #EB5A00;
  --clr-amber-500: #FF9B00;
  --clr-white: #F3F5F7;

  --glass-bg: rgba(255,255,255,0.12);
  --glass-brd: rgba(255,255,255,0.28);
  --glass-sd: rgba(0,0,0,0.20);
}

/* Basic Styles */
body {
    font-family: "Times New Roman", serif;
    margin: 0;
    background-color: var(--clr-red-800);
    color: #333;
    font-weight: normal;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
header {
    background-color: var(--clr-red-700);
    padding: 0.5rem 1rem;
    z-index: 10;
    position: fixed;
    width: 100%;
    top: 0;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    height: 90px;
    display: flex;
    align-items: center;
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo img {
    height: 60px;
    filter: blur(3px);
}

nav ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

nav ul li {
    display: inline-block;
    margin-left: 20px;
}

nav a {
    color: var(--clr-white);
    text-decoration: none;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    position: relative;
}

nav a:hover {
    color: var(--clr-amber-500);
}

.active-lang {
    color: var(--clr-amber-500);
    text-decoration: underline;
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--clr-white);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    background-image: url('images/midsection-person-wearing-red-bathrobe-against-black-background.webp');
    background-size: cover;
    background-position: center;
}

.hero h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: var(--clr-white);
}

.hero p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--clr-white);
}

.cta-button {
    background-color: var(--clr-red-700);
    color: var(--clr-white);
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1.2rem;
    border: 2px solid var(--clr-red-700);
    transition: all 0.3s ease;
}

.cta-button:hover {
    background-color: transparent;
    color: var(--clr-amber-500);
}

.hero-image {
    width: 50%;
    height: 100%;
    object-fit: cover;
}