/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;700&family=Rozha+One&display=swap');

/* Reset some default styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    text-decoration: none;
}

/* Set up the basic body and font */
body {
    font-family: 'Cormorant Garamond', serif; /* Elegant serif for body text */
    line-height: 1.6;
    background-color: black;
    color: #C7A1FF;
    font-size: 50px;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    position: relative;
    transition: color 0.3s ease;
    text-align: center;
}

/* Floral pattern for the header */
header {
    color: #C7A1FF;
    padding: 30px 20px;
    text-align: center;
    border-bottom: 2px solid #C7A1FF;
    z-index: 10;
    opacity: 1;
    width: 100%;
    position: relative;
}

/* Header text (h1) styling */
header h1 {
    font-family: 'Rozha One', serif; /* Distinctive display font */
    color: #C7A1FF;
    font-size: 5rem;
    letter-spacing: 1px;
    font-weight: 400;
    transition: all 0.3s ease;
    text-decoration: none;
    opacity: 1;
}

header h1:hover {
    color: #D9A2FF;
    text-shadow: 0 0 10px #C7A1FF, 0 0 20px #C7A1FF, 0 0 30px #C7A1FF, 0 0 40px #D9A2FF;
    cursor: pointer;
}

/* Navigation */
nav ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

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

nav ul li a {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
    color: #C7A1FF;
    text-decoration: none;
    opacity: 1;
    transition: all 0.3s ease;
}

nav ul li a:hover {
    color: #D9A2FF;
    text-shadow: 0 0 10px #C7A1FF, 0 0 20px #C7A1FF, 0 0 30px #C7A1FF, 0 0 40px #C7A1FF;
}

/* Hero Section */
.hero {
    background-color: black;
    color: #C7A1FF;
