<!DOCTYPE html>
<html lang="en">
<head>

    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>The Lorem</title>
    <style>
      * 

        body {
            font-family: 'Georgia', serif;
            
            min-height: 100vh;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* Header */
                .header {
    position: relative;
    display: flex;
    max-width: 100%;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 1.25rem 0;
    margin-bottom: 2.5rem;
    padding-left: 1rem;
    padding-right: 1rem;
    gap: 1rem;
}
.logo {
    font-family:Constantia, "Lucida Bright", "DejaVu Serif", Georgia, "serif";
    font-size: 3rem;
	color: #000000;
    font-weight: normal;
    letter-spacing: 2px;
	cursor: pointer;
	text-decoration: none;
}
nav{
            display: flex;
            gap: 3rem;
            align-items:flex-start;
            float: right;
        }
.nav-link {
            text-decoration: none;
            color: #8b6f47;
            font-size: 1rem;
            font-weight: 500;
            font-family: Helvetica;
            transition: color 0.3s ease;	
 }

.nav-link:hover {
            color: #6d5436;
}

.sign-in-btn {
            background: #3c0008;
            color: white;
            padding: 8px 35px;
            border: none;
            border-radius: 25px;
            font-size: 10px;
            font-weight: 100;
            letter-spacing: 1px;
            font-style: italic;
            font-style: thin;
            cursor: pointer;
            transition: background 0.3s ease;
}
.sign-in-btn:hover {
            transform: translateY(-0.15rem);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}


        
          

        .section-title {
			position:relative;
			display: flex;
			max-width: 100%;
            text-align: center;
            margin: 60px 0 30px 0;
            font-size: 1.2rem;
            color: #666;
			justify-content: center;
		
        }

        .grid-1 {
			position: relative;
			display: flex;
			max-width: 100%;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.75rem;
			margin-bottom: 4rem;
        }

        .grid-2 {
			position: relative;
			max-width: 100%;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.75rem;
			margin-bottom: 5rem;
			margin-top: 1rem;
}

        .grid-3 {
			position: relative;
			display: flex;
			max-width: 100%;
            grid-template-columns: 1, 1fr;
            margin-bottom: 4rem;
			justify-self: center;
	    	gap: 3rem;
        }



        .grid-4{
         	position: relative;
			max-width: 100%;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 0.75rem;
			margin-bottom: 4rem;
        }

        .card {
            position: relative;
			max-width: 100%;
			max-height: 100%;
            text-decoration: none;
            display: grid;
			padding: 0.5rem;
        }
        .tall-card img{
	        width: 100%;
            height: 35rem;
}

        .card img {
            width: 100%;
            height: 20rem;
            border-radius: 5px;
            object-fit: cover;
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }

        .card:hover img {
            transform: translateY(-0.15rem);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
        }

        .card-title {
            margin-top: 0.5rem;
			margin-bottom: 1rem;
            font-size: 0.9rem;
            color: #666;
            text-align: left;
        }

        .load-more-btn {
			position: relative;
			border-radius: 0.75rem;
			padding: 0.6rem 3.5rem;
	        background: #000000;
			color: whitesmoke;
			display: block; 
            margin: 0 auto; 
            width: fit-content; 
}
		    .load-more-btn:hover {
            transform: translateY(-0.15rem);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
			
        }
		
        .banner {
			position: relative;
			display:flex;
			width: 100%;
            max-width: 1200px;
            height: 10rem;;
            border-radius: 1rem;
            object-fit: cover;
        	padding-bottom: 2rem;
			margin-top: 4rem;
			
        }
        .header h1 {
			position:relative;
			display: flex;
			max-width: 100%;
                font-size: 20rem;
         }

        .feature-content h2 {
			position:relative;
			display: flex;
			max-width: 100%;
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .feature-content p {
			position:relative;
			display: flex;
			max-width: 100%;
            margin-bottom: 1rem;
            line-height: 1.6;
			margin-right: 30rem;
        }

        .feature-section {
            background: white;
			max-width: 100%;
            padding: 4rem;
            border-radius: 1rem;
            margin: 4rem 0;
            box-shadow: 0 2px 10px rgba(0,0,0,0.1);
        }

        .feature-grid {
            position: relative;
			display: flex;
			max-width: 100%;
            margin-bottom: 4rem;
			justify-self: center;
	    	gap: 3rem;
		
        }

        .main-feature-img {
            width: 100%;
            height: 20rem;
			display: grid;
            background-color: #000;
            border-radius: 0.5rem;
            margin-bottom: 2rem;
        }
.main-feature-img:hover {
            transform: translateY(-0.15rem);
            box-shadow: 0 8px 25px rgba(0,0,0,0.15);
                  
}
        
    </style>
</head>
